main {
    width: 800px;
}

.eventTitle {
    font-family: new;
    font-size: 19px;
}

.posters > p {
    font-family: neue_montreal_book;
    font-size: 15px;
}

/* Main Section */
/* Image Styling */
/*Glued section */
#gluedContainer {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 50px;
}

#gluedPoster {
    width: 482px;
    height: 603px;
}

#postcardContainer {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

#gluedPostcard {
    width: 195px;
    height: 293px;
}
/*Glued section */

/* Petals section*/
#petalsContainer {
    display: flex;
    width: 1000px;
    padding-top: 20px;
    padding-bottom: 50px;
    gap: 20px;
}

#petalsPoster {
    width: 497px;
    height: 643px;
}

#petalsSlideshow {
    position: relative;
    width: 427px;
    height: 643px;
}

.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slideshow.active {
    opacity: 1;
}
/* Petals section*/

/* Social media section */
#fairContainer {
    display: flex;
    gap: 20px;

    padding-bottom: 40px;
}

#fairContainer img {
    width: 332px;
    height: 430px;
}

#socialMediaContainer {
    display: flex;
    height: 331px;
    gap: 22px;
}

.mediaTitle {
    width: 1036px;
    font-family: neue_montreal_medium;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #000;
}
/* Social media section */
/* Image Styling */
/* Main Section */

/* Footer section */
footer {
    width: 1050px;
    height: 80px;
    margin-top: 180px;
}
/* Footer section */

/* Mobile query */
@media (max-width: 650px) {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        max-width: 100%; /* prevents images from spilling out */
    }

    main {
        width: 100%;
    }

    .posters {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mediaTitle {
        width: 100%;
    }

    #gluedContainer,
    #socialMediaContainer,
    #fairContainer,
    #petalsContainer {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    #petalsContainer {
        align-items: center;
    }

    #gluedContainer > img,
    #socialMediaContainer > img,
    #fairContainer > img,
    #petalsContainer > img,
    #postcardContainer > img,
    #petalsSlideshow > img {
        width: 100%;
        height: auto;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 50px;
        margin-left: 0;
        width: 100%;
        padding: 0;
    }
}