.preEpisodios {
    display: flex;
    margin-top: 5%;
    padding-bottom: 5%;
}

.textoEpisodios {
    width: 50%;
    height: 50px;
    display: flex;
    align-items: center;
}

.barraOpciones {
    width: 50%;
    display: flex;
    justify-content: center;
}

#temporadas {
    width: 200px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.37);
    color: white;
    font-size: larger;
    cursor: pointer;
    border-radius: 5px;
    padding: 3%;
}

#temporadas:hover {
    background-color: rgba(0, 0, 0, 0.226);
}

#temporadas option {
    background-color: rgba(0, 0, 0, 0.932);
    cursor: pointer;
}

.episodios {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.descripcion {
    padding: 0  ;
}

.episodes {
    width: 100%;
    height: auto;
    min-height: 150px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5%;
    border-radius: 5px;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
}


.episodes:hover {
    background-color: rgba(0, 0, 0, 0.507);
}

.imageEp {
    width: 200px;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.textoEp {
    width: 70%;
    margin-left: 1%;
    display: flex;
    flex-wrap: wrap;
}

.textoEp .tituloEp, .textoEp .resumenEp {
    width: 100%;
    color: white;
    text-align: justify;
    word-wrap: break-word;
}

.textoEp .tituloEp {
    display: flex;
    align-items: center;
    padding: 10px;
}

@media screen and (max-width:750px){
    .episodes .imageEp, .episodes .textoEp {
        width: 100%;
    }
    .episodes .imageEp {
        height: 200px;
    }
}

@media screen and (max-width:830px) {
    .textoEp {
        width: 60%;
    }
    .descripcion {
        padding: 0px;
        margin: 0px;
    }
}

@media screen and (max-width:630px) {
    .episodios {
        padding: 3px;
    }
    .episodes {
        height: auto;
    }
    .imageEp {
        width: 35%;
    }
}