* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    color: #3d3935;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 10px;
    text-align: center;
    word-wrap: break-word;
}

.grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project {
    background-color: #e6e3df;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 120px;
    width: 280px;
    height: 100px;
}

.project:hover {
    transform: translateY(-5px) !important;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #da291c;
}

button {
    background-color: #da291c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

button:hover {
    background-color: #b22318;
}

button:active {
    transform: scale(0.98);
}
