body {
    font-family: "Montaga", serif;
    font-weight: 400;
    font-style: normal;
    background-color: black;
    margin: 0;
    padding: 0;
    position: relative; /*É a referência que será o "body", por ele está dentro, aí tem que utilizar o relative*/
    padding-bottom: 100px;
    padding-top: 20px;
}

ul {
    height: 25px;
    width: 95%;
    display: flex; 
    justify-content: space-between;
    position: fixed; 
}

.img-intro {
    height: 35px;
}

video {
    width: 100vw; /*é para toda a tela */
    min-width: 60vh; /* partir a tela em 100 pedaços, o mínimo é de 60% do tamanho da tela */
    z-index: 1;
}

.capa {
    position: absolute; /*após isso tenho que dizer qual será o posicionamento, pois você pode colocar o ponto no local exato e a referência será o "body", por ele está dentro*/
    bottom: 25%;
    right: 5%;
    width: 35%;
    z-index: 3; /*define qual item fica na frente*/
}

.capa-titulo {
    color: #ffffff;
    font-size: 60px;
    margin-bottom: 5px;
    font-weight: bold;
    opacity: 0.8;
}

.capa-descricao {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.link-assistir {
    background-color: #ffffff;
    color: black;
    padding: 10px 20px; /*sentido: cima-baixo; esquerda-direita*/
    border-radius: 4px;
    cursor: pointer;
}

.link-info {
    color: black;
    background-color: rgba(255, 255, 255, 0.35);
    padding: 10px 20px; /*sentido: cima-baixo; esquerda-direita*/
    border-radius: 4px;
    cursor: pointer;
}

.img-carousel {
    height: 150px;
}

#carouselExampleControls {
    background-color: transparent;
    position: absolute;
    top: 80%;
    bottom: 10px;
    left: 70px;
    cursor: pointer;
}

.titulo-carousel {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.botao-som {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 4;
    position: absolute;
    top: 100px;
    right: 20px;
    position: fixed;
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-conteudo {
    background-color:#181818;
    max-width: 360px;
    position: relative;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    margin: 20px auto;
    padding: 20px;
    width: 50%;
    color: #ffffff;
}

.classif {
    background-color: #ffffff;
    color: black;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
    opacity: 0.8;
}