*{
    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;;
}

header{
    display: flex;
    justify-content: space-between;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.Seleccion{
    color: rgb(192, 17, 17);
    border-radius: 5px
}

.Navegador{
    color: aliceblue;
    border-radius: 5px;
}

h1{
    margin-top: 1%;
    width: 100%;
    height: 100%;
    color: rgb(255, 0, 0);


    font-family: 'Anton', sans-serif;
    font-size: 700%;

    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.Encuesta{
    display: flex;
    justify-content: center;
    align-items: center;
}
form{
    background:rgba(15, 13, 13,80);
    padding: 3%;
    margin-top: 5%;
    width: fit-content;
    display: flex;
    flex-direction: column;

}

form label{
    background:rgba(15, 13, 13,80);
    width: 50%;
}

form label input{
    color:black;
    background: rgba(100, 96, 96, 0.65);
    margin-bottom: 16px;
    padding: 5px;
    width: 200%;
}

form button{
    color: white;
    background: red;
    width: 20%;
    padding: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Boton{
    
    background:rgba(15, 13, 13,80);
    
    display: flex;
    justify-content: center;
}
footer{
    color: #fae89a;
    padding: 1em 0;
    text-align: center;
    margin-top: auto;
}

@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%;
    } 
}