* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #a9ffb0;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #0f2e0f;
    color: #b5f29e;
}

.header:hover {
    background-color: #2f2f2f;
}

.description {
    max-width: 800px;
    padding: 15px 20px;
    background-color: #162d16;
    margin: 15px 0;
    color: #a9ffb0;
    text-align: center;
    font-size: 1.2em;
}

.gallery {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
    background-color: #1b3a1b;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
}

.image-box {
    width: 100%;
    padding: 5%;
    background-color: #262626;
    border: 2px solid #3c723c;
    transition: background-color 0.3s ease;
}

.image-box img {
    width: 100%;
    height: auto;
}

.image-box:hover {
    background-color: #2f2f2f;
}


.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #0f2e0f;
}

.footer:hover {
    background-color: #2f2f2f;
}

.footer button {
    padding: 10px 15px;
    background-color: #3c723c;
    color: #0d0d0d;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.footer button:hover {
    background-color: #58a758;
}
