body{
    background-color: lemonchiffon;
}

h1{
text-align: center;
background-color: aqua;
}


#clear{
    width: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.formstyle{
  margin: auto;
    border: 2px solid black;
    width: 500px;
    text-align: center;
    border-radius: 20px;
    background-color: cornsilk;
    outline: 2px solid red;


} 
input{
    width: 80px;
    background-color: blanchedalmond;
    border-radius: 10px;
    outline: 1px solid red;
    
}
input:hover{
    background-color:coral;
    color: aqua ;
    
}
#answers{
    width: 320px;
margin-top: 20px;
border: 2px solid black;
border-radius: 10px;
text-align: right;
} 

   @media screen and (max-width:600px) {
        #answers{
            width: 200px;
        margin-top: 20px;
        font-size: 30px;
        }
        input{
            width: 50px;
            background-color: blanchedalmond;
            font-size: 30px;
            
        }
        .formstyle{
            width: 300px;
        }
        #Clear{
            width: 170px;
        }
        #back{
            width:80px;
        }
        
        


        
    }
