*{
    box-sizing: border-box;
    margin: 0;
padding: 0;
    
}

/*iconos de Avanzar y retroceder*/
.IcononosLR{
    display: flex;
}
.IconoL span, .IconoR span{
  font-size: 25px;
}
.IconoL{
    width: 100%;
    text-align: left;
}
.IconoR{
    width: 100%;
     text-align: right;
}
/*iconos de Avanzar y retroceder*/

header{
    position: fixed;
    width: 100%;
    background-color: rgba(0, 94, 170);
    top: 0px;
  
}
h1{
    text-align: center;
    color: white;
}

body{
    margin-top: 80px;
    background-color: rgba(229, 255, 254, 0.432);
}


.Form{
    
    border: 1px solid black;
    margin: 0 auto;
   width: 60%;
   padding: 10px;
}

input[type="text"], select, textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-family: monospace;
    
}

label{
    
    font-weight: bold;
}

.Radio{
    display: flex;
    flex-direction: row;
    

}
input[type=radio]{
    margin: 0px 10px 10px;
    background-color: brown; 
}
.Preguntas{
    border: 0.5px dashed gray;
   margin: 20px auto;
   background-color: rgb(255, 255, 255);
}
p{
    padding: 5px;
    color: rgb(49, 49, 49);
    font-family: monospace;
}

a{
    text-decoration: none;
    color: white;
}
h4{
    color: blue;
}

@media screen and (max-width: 900px){
    .Form{
        width: 100%;
    }
    h1{
        font-size: 25px;
    }
    h2{
        font-size: 20px;
    }
    }