body {
    background-color: #f6f100;
    max-width: 100%;
}

@font-face {
    font-family: RobotoCondensed;
    src: url("/fonts/RobotoCondensed-Bold.ttf");
}

.images-container {
    text-align: center;
    width: calc(100vh * (1400 / 1000));
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.images-container::after {
    content: '';
	clear: both;
	display: block;
}

.image {
    display: block;
    height: 100vh;
    max-height: 1000px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
}

.movie {
    width: 100%;
    height: 100vh;
    max-width: 1400px;
    max-height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: hidden;
    margin: 0 auto;
    background-color: #f6f100;
}

#vid {
    width: 100%;
    transform: scale(1.02);
}

.footer-text {
    margin: 0;
    display: block;
    font-size: 14px;
    text-align: center;
    color: #000;
    font-family: RobotoCondensed;
    text-align: left;
}

.footer-text-address {
    color: #E5B917;
}

.link:hover {
    color: #00adee;
    text-decoration: none;
}

.footer {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #f6f100;
    max-width: 1400px;
    margin: 0 auto;
}

@media screen and (max-aspect-ratio: 7/5 ) and (max-width: 1400px) {
    /* Portrait styles */
    .images-container{
        max-width: 100%;
    }

    .image {
        height: auto;
        width: 100%;
        min-height: 250px;
    }
    
    .movie {
        width: 100%;
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .footer {
        padding: 50px 20px;
    }
}

