body{
    margin: 0;
    padding: 0;
    background: white;
    color: black;
    background-image: url(../photos/japan.jpg);
    background-size: cover;
    background-attachment: fixed;
}
header{
    width: 100%; 
    height: 70px;
    background:dodgerblue;
    color: white;
    
}
.logo{
    font-variant: small-caps;
    text-align: center;
    margin-top: 20px;
    font-style: oblique;
    color: white;
    letter-spacing: 10px;
}
form{
    width: 50%;
    height: auto;
    padding: 1%;
    background: #f1f1f1;
    margin-top: 100px;
    text-align: center;
    border-radius: 10px;
    opacity: 0.8;
}
.caption{
    font-size: 2em;
    margin-top: 10px;
}
input[type="text"],input[type="email"],#feedback{
    width: 80%;
    height: 50px;
    padding: 1%;
    outline: none;
    border: 2px solid #e1e1e1;
    background: white;
    margin-top: 10px;
    border-radius: 5px;
    opacity: 1; 
}
input[type="text"]:focus{
    opacity: 1;
}
#feedback{
    height: 100px;
    resize: none;
}
input[type="submit"]{
    width: 30%;
    height: 50px;
    outline: none;
    border: 2px solid #e1e1e1;
    background: white;
    border-radius: 5px;
    font-family: verdana;
    font-size: 1.1em;
    margin-top: 10px;
}
footer{
    width: 100%;
    background:black;
    color: #f1f1f1;
    padding: 2%;
    margin-top: 5%;
    opacity: 0.7;
}
.copy{
    font-family: verdana;
    font-size: 0.9em;
    text-align: center;
    margin-top: 30px;
}