@font-face {
    font-family: 'Hurme';
    src: url(assets/HurmeGeometricSans2.otf);
}

@font-face {
    font-family: 'Hurme';
    font-weight: 300;
    src: url(assets/HurmeGeometricSans2Light.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(0, 0, 0, 0.7) url(assets/bg.png);
    background-blend-mode: darken;
    display: flex;
    height: 100vh;
    width: 100vw;
    font-family: 'Hurme';
    overflow: hidden;
}

h1 {
    font-size: 100px;
    color: #fff;
}

h3 {
    color: #fff;
    font-size: 30px;
    font-style: italic;
    font-weight: 300;
}

span {
    width: 250px;
    text-align: center;
}

span p {
    font-size: 26px;
    font-weight: 300;
    color: #fff;
}

span>img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.sinopse h3 {
    font-style: normal;
    color: #D7262D;
}

.esquerda,
.direita {
    display: flex;
    place-items: center;
    place-content: center;
    height: 100%;
    width: 50%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 85%;
    width: 90%;
}

.direita img {
    height: 80%;
}

.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: #fff;
    font-size: 50px;
}

.sinopse p {
    font-weight: 300;
    margin-left: 40px;
    color: #fff;
    font-size: 35px;
}

.linha {
    display: flex;
    height: 100%;
    align-items: center;
}



.diretor p {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

@media(max-width: 1280px) {
    .topo {
        font-size: 32px;
    }

    h1 {
        font-size: 90px;
    }

    .sinopse p {
        font-size: 28px;
    }
}

@media(max-width: 1080px) {
    body {
        background: rgb(0, 0, 0);
        flex-direction: column;
    }
    .topo {
        font-size: 52px;
    }

    h1 {
        font-size: 120px;
    }

    .esquerda {
        box-shadow: 0px -100px 100px #000;
    }

    .direita,
    .esquerda {
        height: 50%;
        width: 100%;
    }

    .direita {
        background: url(assets/bg-vert.png);
        background-size: cover;
    }

    .container {
        height: 100%;
        width: 85%;
    }

    .direita img {
        display: none;
    }

    .sinopse p {
        font-size: 46px;
    }

    h3 {
        font-size: 42px;
    }

}

@media(max-width: 960px){
    body {
        background: rgb(0, 0, 0, 0.7) url(assets/bg.png);
        background-size: cover;
        display: flex;
        flex-direction: row;
        background-repeat: no-repeat;
    }

    .direita {
        background: none;
        background-size: cover;
    }

    .direita img {
        display:block;
    }

    .esquerda, .direita {
        display: flex;
        place-items: center;
        place-content: center;
        height: 100%;
        width: 50%;
    }

    .esquerda {
        box-shadow: 0px -100px 100px transparent;
    }

    .topo {
        font-size: 22px;
    }

    h1 {
        font-size: 60px;
    }

    .sinopse p {
        font-size: 18px;
    }

    h3 {
        font-size: 22px;
    }

    span {
        width: 150px;
    }

    span p {
        font-size: 22px;
    }
    
}

@media(max-width: 720px) {
    body {
        background: rgb(0, 0, 0);
        flex-direction: column;
    }

    h1 {
        font-size: 70px;
    }

    span {
        width: 150px;
    }

    span p {
        font-size: 20px;
    }

    .direita,
    .esquerda {
        height: 50%;
        width: 100%;
    }

    .esquerda {
        box-shadow: 0px -100px 100px #000;
    }

    .direita {
        background: url(assets/bg-vert.png);
        background-size: cover;
    }

    .container {
        padding: 10px 0 10px 0;
        justify-content: space-between;
        height: 100%;
        width: 85%;
    }

    .direita img {
        display: none;
    }

    .topo {
        font-size: 35px;
    }

    .sinopse p {
        margin: 0;
        font-size: 25px;
    }

    .diretor p {
        font-size: 20px;
    }
}

@media(max-width: 540px){
    .topo {
        font-size: 24px;
    }

    h1 {
        font-size: 50px;
    }

    .sinopse p {
        font-size: 18px;
    }

    h3 {
        font-size: 19px;
    }

    .diretor p {
        font-size: 18px;
    }
}


