html{
    background-color: #ffffcc;  
}

nav ul{
    display:flex;
    justify-content: center;
    list-style: none;
    padding: 5px;
    
}
a{
    color: black;
    text-decoration:none;
}
li{
    background:#ffffcc;
    color: black;
    font-size: 15px;
    border-radius: 10px;
    padding: 5px;
    margin: 3px;
    font-style: italic;
}
body{
   background-color: #85878f; 
    margin-top: 0px;
    border-radius: 20px;
    border: black 4px inset;
    text-align: center;
    width: 50%;
   
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
}
div{
   
    text-align-last: inherit;
}
form{
    border-radius: 20px;
    background-color: #85878f;
}
h1{
    
    font-size:30px;
    color:#ffffff;
    background-color: #ffd24c;
    text-align: center;
    border-radius: 40px;
}
#btn:hover{
    
    background:yellow; 
    background-image: -webkit-linear-gradient(top, #ffd24c, #2079b0);
    border-bottom: 20px;
    text-decoration: none;
}
textarea{
    border-radius: 2px;
    border-color: darkorange;
}