/* ===== CONFIGURACION GENERAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:linear-gradient(to bottom,#b94a4f,#cc3b42,#f88484);
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}



/* ===== MENU ===== */

ul, li{
    list-style:none;
}

li{
    display:inline-block;
    margin:15px;
}

a{
  text-transform: uppercase;
    text-decoration:underline;
    color:#862722;
    font-size:25px;
    transition:0.3s;
    position:sticky;
   text-shadow:0 0 15px #ee75c6;

}

a:hover{
    color:#fbbab7;
}

/* ===== IMAGEN PRINCIPAL ===== */

body img:first-child{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    margin-bottom:20px;
}

/* ===== TITULOS ===== */

h1{
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align:justify;
    font-size:45px;
    color:#eb9f9f;
    margin-top:5px;
    margin-bottom:5px;
    text-transform:capitalize;
    letter-spacing:4px;
}

h2{
    text-align:justify;
    font-size:40px;
    margin:40px;
    color:#d46776;
}



h4{
    width:90%;
    margin:auto;
    text-align:justify;
    font-size:15px;
    margin-bottom:30px;
    color:#fa909e;
}
p{
  width:90%;
    margin:auto;
    text-align:justify;
    font-size:15px;
    margin-bottom:30px;
    color:#fa909e;
}
/* ===== LINEAS ===== */

hr{
    border:1px solid #ffa8b0;
    width:80%;
    margin:auto;
}

/* ===== LISTAS ===== */


ol li{
     text-align:justify;
    display:list-item;
    margin-bottom:10px;
    font-size:15px;
    color:#db8484;
}

/* ===== TABLAS ===== */

table{
    width:90%;
    margin:auto;
    border-radius:20;
    margin-top:10px;
    margin-bottom:400px;
    background:#200406;
    border: 1px solid #333333; 
  border-collapse: collapse; 
  padding: 100px;
   
}

th, td{
    border:4px solid #f08395d2;
    padding:10px;
    text-align:center;
}

th{
    background:#d64766;
    color:rgb(241, 150, 150);
    font-size:20px;
}

td{
  text-transform: lowercase;
    background:#c74f4f;
    color:#ce9a9a;
}

/* ===== IMAGENES ===== */

img{
    border-radius:20px;
    transition:0.3s;
}

img:hover{
    transform:scale(1.03);
    opacity:0.5;
}

/* ===== GALERIA ===== */

table img{
    box-shadow:0.1px 0px 30px rgba(207, 174, 174, 0.973);
   
}


/* ===== VIDEOS ===== */

video{
    display:inline-block;
    margin:0px;
    border:3px solid #b62222;
    border-radius:15px;
    box-shadow:0px 2px 150px rgb(224, 0, 30);
}

/* ===== NOTICIAS ===== */

ul{
    width:80%;
    margin:auto;
    padding:20px;
}

ul li{
    display:block;
    margin-bottom:20px;
    font-size:20px;
    background:#db6a6a;
    padding:25px;
    border-left:25px solid #e0dbdc;
    border-radius:10px;
}

/* ===== EFECTOS ===== */

section{
    animation:fade 100s ease;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    h1{
        font-size:35px;
    }

    h2{
        font-size:22px;
    }

    p,h4{
        font-size:18px;
        width:95%;
    }

    table{
        width:100%;
    }

    table img{
        width:100%;
        height:auto;
    }

    li{
        display:block;
        text-align:center;
    }

    video{
        width:90%;
        height:auto;
    }
}