.footer-content {
    position: relative;
    border-radius: 20px;
    border-top: min(0.7vw, 9px) solid black;
    margin-top: min(2vw, 26px);
    width: 97vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    margin-bottom: min(2vw, 26px);
    padding-top: 10px;
}


.footer-content span {
    font-size: var(--page-text);
}

.footer-image-container {
    width: 97.24vw;
    height: min(13.2vw, 169px);
    display: flex;
    align-items: center;
    justify-content: center; /* Add this line to center the image horizontally */
}

.footer-image {
    background-image: url("../img/footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: min(50%, 640px);
    width: min(50%, 640px);
}


.footer-break {
    display: none;
}


/* Adjust header when viewport width is less than 600px */
@media (max-width: 600px), (max-height: 600px) {
    .footer-content {
        border-radius: 10px;
    }

    .footer-content span{
        font-size: var(--page-text-sm);
    }

    .footer-image {
        height: 60%;
        width: 60%;
    }
}

@media screen
and (max-height: 600px)
and (orientation: landscape) {

    footer-content span{
        font-size: var(--page-text-sm);
    }
}


@media screen
and (max-width: 600px)
and (orientation: portrait) {
    .footer-break {
        display: block;
        line-height: 1;
    }
}