body{
    margin: 0;
    padding: 0;
    background:#202020;
    color: #fff;
}
header{
    width: 100%;
    height: 70px;
    background:tomato;
    color: white;
}
.logo{
    font-variant: small-caps;
    text-align: center;
    margin-top: 10px;
    font-style: oblique;
    
}
form{
    width: 50%;
    height: auto;
    padding: 1%;
    background: #000;
    color: #fff;
    padding: 2%;
    margin-top: 100px;
    text-align: center;
    border-radius: 10px;
}
input[type="text"],input[type="email"],#feedback{
    width: 80%;
    height: 50px;
    padding: 1%;
    outline: none;
    border: 1px solid #808080;
    background: #000;
    color: #fff;
    margin-top: 10px;
    border-radius: 5px;
}
#feedback{
    height: 100px;
    resize: none;
}
input[type="submit"]{
    width: 30%;
    height: 50px;
    outline: none;
    border: none;
    background:#808080;
    color: #fff;
    border-radius: 25px;
    font-family: verdana;
    font-size: 1.1em;
    margin-top: 10px;
}
footer{
    width: 100%;
    background:tomato;
    color: #f1f1f1;
    padding: 2%;
    margin-top: 5%;
}
.copy{
    font-family: verdana;
    font-size: 0.9em;
    text-align: center;
    margin-top: 30px;
}