body{
    background: #091034;
}
header{
    background: #183BF0;
    height: 80px;
    border-radius: 30px 30px 0 0;
}
h1{
    text-align: center;
    font-family: fantasy;
    text-decoration:underline;
    color: white;
    padding: 20px;
}
form{
    width: 500px;
    margin: auto;
    padding: 30px;
    border: 1px solid black;
    border-radius: 30px 30px 30px 30px;
    background: #798EF6;
}
button{
    border-radius: 10px 10px 10px 10px;
    background: #DDE3FD;
}
input[type="text"]{
    background:#DDE3FD ;
}
input[type="tel"]{
    background: #DDE3FD;
}
input[type="email"]{
    background: #DDE3FD;
}
input[type="date"]{
    background: #DDE3FD;
}
footer{
    background: #183BF0;
    position: fixed bottom;
    height: 80px;
    border-radius: 0 0 30px 30px;
}
footer p{
    text-align: center;
    padding: 30px;
    margin: 0;
    color: white;
    font-family: fantasy;
    text-decoration: underline;
}