body{
    background-color:darkblue;
    text-align: center;
    padding: 20px;
}

h1{
    font-size: 50px;
    background: linear-gradient(900deg,#000,gray);
    padding: 50px;
    text-shadow: 10px 10px 10px black;
    color: white;
    box-shadow: 10px 10px 10px black;
}

div{
    margin-top: 50px;
    padding: 50px;
    background: linear-gradient(900deg,#000,gray);
    box-shadow: 10px 10px 10px black;
    width: 600px;
    height: 300px;
    margin: auto;
    border-radius: 10px;
}

label{
    padding: 20px;
    color: white;
    font-size: 25px;
    text-shadow: 10px 10px 10px black;
}

input{
    border-style: none;
    width: 250px;
    height: 35px;
    font-size: 20px;
    box-shadow: 5px 5px 5px black;
    border-radius: 10px;
    text-align: center;
    text-shadow: 2px 2px 20px black;
    color:black;
}

button{
    border-style: none;
    background: gray;
    color:white;
    width: 250px;
    height: 35px;
    font-size: 20px;
    box-shadow: 5px 5px 5px black;
    border-radius: 10px;
    font-size: 22px;
    text-shadow: 2px 2px 5px black;
}

button:hover{
    box-shadow: 2px 2px 5px black;
}