body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: var(--green-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

:root {
    --green: #47C08B;
    --green-light: #D9F6DF;
    --green-dark: #46AB7F;
    --green-border: #7CD4AE;
}

header {
    background-color: var(--green-dark);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 150px;
}

.description {
    margin: 20px auto;
    width: 60%;
    font-size: 1.2em;
    text-align: justify;
}

.events {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    flex-grow: 1;
    flex-wrap: wrap;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.event {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    border: 2px solid var(--green-border);
    width: 300px;
}

.event:hover {
    transform: scale(1.05);
    background-color: var(--green-light);
}

.event img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.event h2 {
    font-size: 1.2em;
    margin-top: 10px;
    color: var(--green-dark);
}

a {
    text-decoration: none;
    color: white;
}

footer {
    background-color: var(--green);
    color: white;
    padding: 20px;
    margin-top: auto;
    text-align: center;
}
