#poppy-image {
    display: inline-block;
    position: relative;
    object-fit: cover;
    top: 15vh;
    width: 100%;
    height: 80vh;
}



.square-4 {
    margin-top: 5vh;
    height: 60vh;
    align-items: center;
    justify-content: space-evenly;
}

.square-4 img {
    width: 50vh;
    height: 50vh;
    border-radius: 3.5vh;
    display: inline-flex;
}

@media (max-aspect-ratio: 76/37) {

    /*mobile*/
    .square-4 {
        height: 100vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        grid-template-rows: repeat(2, 1fr);    /* 2 rows */
        align-items: center;
        justify-items: center;
    }

    .square-4 img {
        width: 40vw;
        height: 40vw;
    }
}



.portrait-3 {
    margin-top: 5vh;
    justify-content: space-evenly;
    height: 85vmin;
}

.portrait-3 img {
    width: auto;
    height: 70vmin;
    border-radius: 2vmin;
    border-color: black;
    border-width: 1vmin;
    border-style: solid;
}

@media (max-aspect-ratio: 13/8) {

    /*mobile*/
    .portrait-3 {
        flex-direction: column;
        height: 240vmin;
    }
}



.landscape-2 {
    margin-top: 5vh;
    justify-content: space-evenly;
    height: 35vw;
}

.landscape-2 img {
    width: 45vw;
    height: auto;
    border-radius: 1vmin;
}

@media (max-aspect-ratio: 13/15) {
    .landscape-2 {
        flex-direction: column;
        height: 130vw;
    }

    .landscape-2 img {
        width: 80vw;
    }
}



.mix-2 {
    margin-top: 5vh;
    justify-content: space-evenly;
    height: 85vh;
}

.mix-2 img {
    border-radius: 2vh;
    border-color: black;
    border-width: 1vmin;
    border-style: solid;
}

.mix-2 img:first-child {
    width: auto;
    height: 75vh;
}

.mix-2 img:nth-child(2) {
    width: auto;
    height: 75vh;
}

@media (max-aspect-ratio: 16/9) {
    .mix-2 {
        flex-direction: column;
        height: fit-content;
    }

    .mix-2 img {
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .mix-2 img:first-child {
        width: 60vw;
        height: auto;
    }

    .mix-2 img:nth-child(2) {
        width: 80vw;
        height: auto;
    }
}



.single {
    margin-top: 5vh;
    height: 60vh;
}

.single img {
    height: 50vh;
    width: auto;
    border-radius: 2vh;
    border-color: black;
    border-width: 1vmin;
    border-style: solid;
}

@media (max-aspect-ratio: 1) {
    .single {
        height: fit-content;
    }

    .single img {
        margin-top: 5vw;
        margin-bottom: 5vw;
        height: auto;
        width: 70vw;
        border-radius: 2vh;
        border-color: black;
        border-width: 1vmin;
        border-style: solid;
    }
}