@font-face {
    font-family: droid;
    src: url(/fonts/droid.otf);
}
@font-face {
    font-family: TT-Bold;
    src: url(/fonts/TT\ Hoves\ Pro\ Trial\ Expanded\ Bold.ttf);
}
@font-face {
    font-family: TT-Medium;
    src: url(/fonts/TT\ Hoves\ Pro\ Trial\ Expanded\ Medium.ttf);
}

html, body {
    width: 100%;
    height: 100%;

    font-family: TT-Medium;

    margin: 0;

    background-color: black;
    
}

.container {
    width: 100%;


    flex: 1;
    padding: 70px;

    display: flex;
    align-items: center;
    flex-direction: column;
    
    margin: 0 auto;
}

#titulo {
    color: white;
    text-shadow: 1px 2px black;
    font-size: 3rem;

}

.episodios {
    width: 500px;

    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: space-between;

    margin: 10px;
}

.card {
    width: 500px;
    height: 300px;

    border: 1px solid #dddddd3f;
    border-radius: 8px;

    display: flex;
    flex-direction: column ;
    justify-content: space-between;

    background-color: rgba(0, 0, 0, 0.288);
    background-size: cover;
    background-position: center;


    color: brown;
    text-shadow: 1px 1px 2px black;

    padding: 10px;

    margin: 10px;

   

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-text {
    width: 400px;
    height: 100px;
    
    font-size: 90%;
    text-shadow: 1px 1px 2px black;

    text-align: center;
    margin: auto;
    margin-top: 10px;

    white-space: pre-wrap;
}
.card-text p {
    font-size: 75%;
}
.card-img-link {
    display: flex;
    flex-direction: column;
    align-items: end;

}

.img {
    max-width: 500px;
    height: auto;

    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
}

footer {
    position: relative;

    clear: both;

    margin-top: 20px;
}



/*/////////////////////////////////  CSS EPISÓDIO UNICO  \\\\\\\\\\\\\\\*/ 

.card-ep {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;

    white-space: pre-wrap;
}

.card-ep p {
    width: 800px;
    text-align: justify;

    margin: 20px 0px;
}


@media (max-width:  836px) {
    .card-ep {
        width: 80%;
    }

    .card-ep p {
        width: 80%;
        text-align: justify;
    }

    video {
        width: 90%;
    }

    
}

@media (max-width:  520px) {
    .card {
        width: 70%;
        margin: auto;
    }
}