/* Universal Selectors */
* {
    margin: 0;
    padding: 0;
}

/* Element Selectors */

body {
    position: relative;
    font-family: "Goudy Bookletter 1911", sans-serif;
    font-size: 20px;
    background-color: #FDF8F5;
    color: #4F4846;
    line-height: 2.5;
}

header {
    background-color: rgb(48,85,70);
    border-bottom: solid 12px rgb(207, 168, 139);
    text-align: right;
}

footer {
    text-align: center;
    background-color: rgb(48,85,70);
}

footer p {
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style-type: none;
}

li {
    margin: 12px;
    font-size: 20px;
    display: inline;
}

img {
    display: block;
    margin: 0 auto;
}

input {
    height: 20px;
    width: 300px;
}

button {
    padding: 0 24px;
    background-color:rgb(68, 63, 62);
    color: white;
}

/* ID Selectors */
#content {
    text-align: center;
}

#content h1 {
    font-size: 36px;
}

#contact {
    background-color: rgb(223, 201, 184);
    text-align: center;
    padding: 24px;
}

#contact-form {
    border: solid 5px rgb(207, 168, 139);
    border-radius: 24px;
    padding: 12px;
    width: 500px;
    margin: 0 auto;
}
