*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    background-color: black;
}
nav{
    padding:20px;
}
ul{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}
li{
    list-style-type: none;
    color:white;
    font-size: 20px;
}
li:hover{
    color:aqua;
}
a{
    text-decoration: none;
}
.cont{
    text-align: center;
    color:white;
    margin-top:20px;
}
.details{
    color:white;
    margin-top:30px;
    margin-right:290px;
    border:3px solid aqua;
    padding:0px;
    margin-left: 290px;
    
} 
@media only screen and (max-width:768px){
.details{
 margin:50px;
}
}


form{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;

}
label{
    font-size: 25px;
     line-height: 50px; 
}
input{
    width:350px;
    height:60px;
    border:3px solid aqua;
    color:white;
    outline: none;
    font-size:20px;
    text-align:center;

}
button{
    color:black;
    background-color:aqua;
    box-shadow:3px 3px 10px aqua;
    padding:10px;
    border-radius:10px;
    margin-top: 20px;
    width:130px;
    height:50px;
    font-weight: bolder;
    font-size: larger;
}
textarea{
    width:350px;
    height:130px;
    color: white;
    border:3px solid aqua;
}
hr{
    color:white;
    height:5px;
    background-color: white;;
}