body {
    width: 1024px;
    margin: 0px auto;
}
.container {
    height: 700px;

}
header {
    background-image: url("../images/c1.jpg");
    background-repeat: no-repeat;
    background-position: center; 
    height: 200px;
    width: 100%;
}

section {
    background-image: url("../images/b1.jpg");
    background-repeat: no-repeat;
    background-position: center; 
    background-attachment: fixed;
    height: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.descricao {
    color: aliceblue;
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
    text-shadow: 2px 2px 5px gray;
}

select {
    font-size: 20px;
    border: none;
    color: rgb(5, 21, 236);
    font: bold;
    padding: 10px;
    margin-left: 100px;
    cursor: pointer;
}

.texto_serie, .texto_episodio {
    color: aliceblue;
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
    text-shadow: 2px 2px 5px gray;
}

input {
    font-size: 20px;
    border: none;
    color: rgb(35, 189, 4);
    font: bold;
    padding: 10px;
    width: 60px;  
    margin-top: 10px;
}

.bplay {
    padding: 10px;
    width: 250px;
    margin-left: 50px;
    background-color: green;
    color: aliceblue;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
}

.proximoEp {
    padding: 5px;
    width: 150px;
    height: 40px;
    background-color: rgb(5, 218, 233);
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    
}

.anteriorEp {
    padding: 5px;
    width: 150px;
    height: 40px;
    background-color: rgb(5, 218, 233);
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    
}

video {
    margin-top: 50px;
    cursor: pointer;
}


footer {
    background-color: black;
    color: aliceblue;
    width: 100%;
    height: 100px;
    text-align: center;   
}

.footer {
    padding-top: 40px;
}

/* ----------------------media----------------------- */

@media (max-width: 425px) {
    body {
        width: 425px;
    }
    video {
        width: 350px;
        height: 197px;
    }
    header {
        height: 0px;
        width: 0px;
        background-image: none;
    }


    .descricao {
        color: aliceblue;
        font-size: 15px;
        text-align: center;
        margin-top: 15px;
        text-shadow: 2px 2px 5px gray;
    }

    select {
        font-size: 10px;
        border: none;
        color: rgb(5, 21, 236);
        font: bold;
        padding: 5px;
        margin-left: 50px;
    }
    
    .texto_serie, .texto_episodio {
        color: aliceblue;
        font-size: 15px;
        text-align: center;
        margin-top: 15px;
        text-shadow: 2px 2px 5px gray;
    }
    
    input {
        font-size: 10px;
        border: none;
        color: rgb(35, 189, 4);
        font: bold;
        padding: 5px;
        width: 30px;  
        margin-top: 5px;
    }
    
    button {
        padding: 5px;
        width: 125px;
        margin-left: 25px;
        background-color: green;
        color: aliceblue;
        font-size: 15px;
        font-weight: 900;
    }
    section {
        background-image: url("../images/b1.jpg");
        background-repeat: no-repeat;
        background-position: center; 
        background-attachment: fixed;
        height: 700px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}