body {
    background-color: #2c2c2c;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-1 {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    color: #fff;
    font-size: 5rem;
    margin: 0 0 1rem 0;
    width: 100%;
    text-align: center;
}

.standout {
    color: #CA3433;
}

.section-2 {
    background-color: #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

.inner-section-2 {
    padding: 2rem;
}

.inner-section-2 h2, .inner-section-2 p {
    margin: 0;
}
.festival-img {
    aspect-ratio: 2/1;
}

.section-3 {
    width: 70%;
    margin: 3rem auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.inner-section-3 {
    background-color: #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.inner-section-3 h2, .inner-section-3 p {
    margin: 0;
}

.section-4 {
    width: 70%;
    margin: 3rem auto 3rem auto;
    background-color: #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.section-4 h2, .section-4 p {
    margin: 0;
}

/* Overwrite events css */
.events-row {
    margin: 0 !important;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .section-1 {
        width: 90%;
        margin-inline: auto;
        height: 60vh;
    }

    .section-2 {
        grid-template-columns: 1fr;
        width: 90%;
        margin-inline: auto;
    }

    .section-3 {
        grid-template-columns: 1fr;
        margin-inline: auto;
        width: 90%;
        margin-inline: auto;
    }
}