body {
    background-image: url("images/class.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#formContent{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20%;
    margin-top: 10%;
    background-color: antiquewhite;
    opacity: .80;
    padding: 40px;
    height: 70%;
    width: 50%;
    border: 4px hsl(55, 21%, 31%) solid;
    border-radius: 10px;
}
#heading{
    font-family: cursive;
    font-weight: 5px;
    font-size: 50px;
    text-shadow: 2px 2px olive;
    text-decoration: underline black solid;
}

input[type = button]{
    padding: 10px 80px;
    color: blue;
    text-decoration: none;
    background-color: aliceblue;
    border-radius: 10px;
    font-family: sans-serif;
    font-size: 18px;


}
input[type = button]:hover{
    padding: 10px 80px;
    color: aliceblue;
    text-decoration: none;
    background-color: blue;
    cursor: pointer;

}