* {
    font-family: Arial, sans-serif;
    color: rgb(30, 30, 30);
    margin: 0px;
    padding: 0px;
}

body {
    background-color: antiquewhite;
    /* Let block elements fill entire width */
    margin: 0px;
}

header,
footer {
    background-color: chocolate;
    height: 60px;
    /* Line height helps center the text top-to-bottom */
    line-height: 60px;
    width: 100%;
    color: antiquewhite;
}

header {
    border-bottom: 10px solid gold;
    text-align: right;
    /* Header fixed to the top on scroll */
    position: fixed;
    top: 0px;
}

.header-link {
    margin-right: 40px;
    font-size: 20px;
    color: antiquewhite;
}

main {
    margin-top: 100px;
}

h1 {
    text-align: center;
    font-size: 50px;
    margin: 30px;
}

figure {
    text-align: center;
    margin-bottom: 30px;
}

figcaption {
    font-size: 20px;
    padding: 10px;
}

#contact {
    background-color: gold;
    padding: 20px;
}

form {
    text-align: center;
}

ul {
    list-style-type: none;
}

label,
input {
    margin-top: 5px;
    margin-bottom: 5px;
}

h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}

.footer-text{
    color: antiquewhite;
    font-size: 20px;
    text-align: center;
}