*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Georgia, serif;
}


body{
	 background-image: url('diario.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    background:#080808;
    color:white;
}


/* CAPA */

header{
    height:500px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}


header img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(35%);
}


.titulo{
    position:relative;
    z-index:1;
}


.titulo h1{
    font-size:55px;
    color:#ff0000;
    text-shadow:0 0 20px black;
}


.titulo h2{
    font-size:35px;
}


.titulo p{
    margin-top:20px;
    font-size:20px;
}



/* SOBRE */

.sobre{
    width:80%;
    margin:40px auto;
    text-align:center;
}


.sobre h2,
.episodios h2{
    color:#ff3030;
    font-size:35px;
    margin-bottom:20px;
}


.sobre p{
    line-height:1.8;
}



/* EPISÓDIOS */

.episodios{
    width:70%;
    margin:auto;
}


.episodios h2{
    text-align:center;
}


.episodio{
    background:linear-gradient(135deg,#1b1b1b,#420000);
    padding:25px;
    margin-bottom:25px;
    border-left:8px solid red;
    border-radius:15px;
    box-shadow:0 0 15px rgba(255,0,0,0.4);
    transition:0.3s;
}


.episodio:hover{
    transform:scale(1.03);
}


.episodio h3{
    color:#ff5555;
    margin-bottom:15px;
}


.episodio p{
    line-height:1.6;
}


.final{
    border-left-color:gold;
}



/* RODAPÉ */

footer{
    margin-top:50px;
    background:#700000;
    padding:25px;
    text-align:center;
}
