* {
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    height: 80px;
    text-align: center;
}

header ul {
    list-style-type: none;
    background-color: #333;
}

header ul li {
    display: inline-block;
    height: 100%;
}

header ul li a {
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    line-height: 80px;
}

form {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 40px;
}

form > p {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #000000;
}

input[type=text] {
    height: 30px;
    width: 200px;
    border-radius: 5px;
}

input[type=number] {
    height: 30px;
    width: 200px;
    border-radius: 5px;
}

input[type=email] {
    height: 30px;
    width: 200px;
    border-radius: 5px;
}


input[type=submit] {
    border-radius: 5px;
    border: 0;
    width: 100px;
    height:40px;
    background-color: #333;
    color: #fff;
}

textarea {
    border-radius: 5px;
}

footer {
    height: 50px;
    background-color: #333;
    text-align: center;
}

footer p {
    color: #fff;
    line-height: 50px;
    font-size: 1.5em;
}