*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background:linear-gradient(rgba(15, 13, 13, 0.75),rgba(15, 13, 13, 0.75)),url(../Imagenes/Fondo.JPG) no-repeat center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header{
    display: flex;
    justify-content: space-between;
}

.Seleccion{
    color: rgb(192, 17, 17);
}

.Navegador{
    color: aliceblue;
}

main{
    position: relative;
}

h1{
    margin-bottom: 1%;
    margin-top: 1%;
    width: 100%;
    height: 100%;
    color: rgba(255, 0, 0);

    font-family: 'Anton', sans-serif;
    font-size: 700%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Imagen img{
    margin: 1%;
    object-fit: cover;
}

section{
    position: relative;
    display: flex;
}

.Contenedor{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.ContenidoWeb{
    padding: 1%;
    background: aliceblue;
    margin-left: 1%;
    margin-right: 1%;
}

.ContenidoWeb div{
    padding: 1%;
    background: aliceblue;
}

.ContenidoWeb h3{
    padding: 1%;
    background: aliceblue;
}

.ContenidoWeb ul{
    padding: 1%;
    background: aliceblue;
}

.ContenidoWeb li{
    padding: 1%;
    background: aliceblue;
    margin-left: 5%;
}

.ContenidoWeb p{
    padding: 1%;
    background: aliceblue;
    margin-left: 5%;
}

.ContenidoWeb h4{
    padding: 1%;
    background: aliceblue;
}

.ContenidoWeb img{
    width: 60%;
    height: 80%;
    padding: 1%;
    background: aliceblue;

    margin-left:20%;
    margin-right: 30%;
}

.ContenidoWeb video{
    width: 35%;
    height: 10%;
    padding: 1%;
    background: rgb(76, 131, 163);
    border-radius: 16px;

    margin-left:20%;
    margin-right: 30%;
}

.ContenidoWeb a{
    background: aliceblue;
}

.ContenidoExtra{
    margin-left: 1%;
    margin-right: 1%;
}

#Informacion{
    margin-bottom: 5%;
    padding: 5%;
    border-radius: 5px;
    background: rgb(76, 131, 163);
}

#Informacion h4{
    background: rgb(76, 131, 163);
}

#Informacion ul{    
    list-style-position: inside;
    background: rgb(76, 131, 163);
}

#Informacion li{
    margin-left: 5%;
    background: rgb(76, 131, 163);
}

#Informacion a{
    background: rgb(76, 131, 163);
}

#Consejos{
    padding: 5%;
    background: rgb(76, 131, 163);
    border-radius: 5px;
}

#Consejos h4{
    background: rgb(76, 131, 163);
}
#Consejos ul{
    list-style-position: inside;
    background: rgb(76, 131, 163);
}

#Consejos li{
    margin-left: 5%;
    background: rgb(76, 131, 163);
}
footer{
    color: #fae89a;
    padding: 1em 0;
    text-align: center;
    margin-top: 1%;
}
@media screen and (max-width: 480px){
    .Seleccion{
        font-size: 90%;
    }
    .Navegador{
        font-size: 90%;
    }   
    h1{
        font-size: 400%;
    }
}
@media screen and (max-width: 768px) and (min-width: 481px){
    .Seleccion{
        font-size: 100%;
    }
    .Navegador{
        font-size: 100%;
    }
    h1{
        font-size: 450%;
    } 
}
@media screen and (max-width: 1024px) and (min-width: 769px){
    .Seleccion{
        font-size: 150%;
    }
    .Navegador{
        font-size: 150%;
    }
    h1{
        font-size: 600%;
    }
}