@font-face {
    font-family: 'UniversLTStdXBlack';
    src: url("UniversLTStd-XBlack.otf") format("opentype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: .3s;
}

body {
    background: rgb(0,35,74);
    background: linear-gradient(45deg, rgba(0,35,74,1) 0%, rgba(68,30,103,1) 100%);
    color: white;
    font-family: 'Montserrat', serif;
    font-size: 14px;
}

#content {
    position: absolute;
    top: 0;
    width: 100%;
}

footer {
    align-items: center;
    background-color: black;
    display: flex;
    height: 65px;
    justify-content: space-between;
    width: 100%;
}

#europe-box img {
    width: 230px;
}

#footer-logo-box img {
    opacity: 0.6;
    width: 35px;
}

#footer-logo-box img:hover {
    opacity: 1;
}

.line {
    height: 5px;
    background-color: rgb(255 255 255 / 44%);
    margin-bottom: 100px;
    width: 100%;
}

#main-logo {
    max-width: 333px;
    min-width: 120px;
    width: 25%;
}

.movie-card {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    max-width: 1040px;
    max-height: 206px;
    margin-bottom: 105px;
}

.movie-cast {
    margin: 10px 0;
}

.movie-img img {
    aspect-ratio: 3/4;
    margin-right: 40px;
    width: 150px;
}

.movie-info {
    font-size: 19px;
    margin-top: -10px;
    max-width: 340px;
    width: 100%;
}

.movie-title {
    font-family: 'UniversLTStdXBlack', serif;
    font-size: 35px;
    transform: matrix(1, 0, 0, 0.75, 0, 0);
    line-height: 1;
}

.movie-synopsis {
    font-size: 18px;
    width: 445px;
    margin-left: 50px;
    transform: translateY(50%);
}

#myVideo {
    bottom: -15%;
    min-height: 130%;
    min-width: 130%;
    position: fixed;
    right: -15%;
    filter: blur(20px);
}

#rrss-box {
    display: flex;
    font-size: 25px;
    gap: 19px;
    margin-left: 4%;
}

#rrss-box i{
    color: rgba(255,255,255,0.6);
}

#rrss-box i:hover {
    color: white;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-logo {
    margin-top: 65px;
}

.section-movies {
    margin-top: 145px;
    padding: 0 8%;
}

.section-next {
    font-size: 19px;
    line-height: 2;
    margin: 70px auto 200px auto;
    max-width: 705px;
    text-align: center;
}

.section-title {
    font-size: calc(25px * (4/3));
    font-weight: 500;
    letter-spacing: 16px;
    margin-top: 100px;
}

small {
    font-size: 25px;
}


@media (max-width: 1000px) {
    .movie-synopsis {
        transform: none;
    }

    .section-title {
        font-size: calc(22px*(4 / 3));
        letter-spacing: 10px;
    }
}

@media (max-width: 900px) {
    .movie-card {
        flex-wrap: wrap;
        max-height: initial;
    }
    .movie-synopsis {
        margin-left:0;
        margin-top: 30px;
    }
}

@media (max-width: 760px) {
    .section-title {
        margin: 100px auto;
        text-align: center;
        width: 400px;
    }
}

@media (max-width: 650px) {
    footer {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }

    .line {
        width: 85%;
    }

    .movie-img img {
        margin-right: 15px;
        width: 100px;
    }

    .movie-info {
        max-width: 300px;
    }
    .movie-info, 
    .section-next {
        font-size: 16px;
    }

    .movie-title {
        font-size: 30px;
    }

    .movie-synopsis {
        width: 90%;
    }

    .section-movies {
        padding: 0;
    }

    .section-title {
        font-size: calc(16px*(4 / 3));
        width: 100%;
    }
}

@media (max-width: 500px) {
    .movie-info {
        max-width: 65%;
    }

    .movie-title {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .movie-info {
        margin-top: 15px;
    }
}