* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header,
section h2,
header nav li a,
form button {
        font-family: "Nanum Gothic Coding", monospace;
        font-weight: bolder;
        color: #652E34;
}

.contact-title,
#contact,
form button {
    font-family: "Nanum Gothic Coding", monospace;
    color: #eff;
}

body, input, textarea {
    font-family: Arial, Helvetica, sans-serif;
}

header {
    padding: 16px;
    background-color: #652E34;
    color: #eff;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a {
    color: #eff;
    text-decoration: none;
}

header .container,
section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto
}

section .container{
    align-items: flex-start;
}

section {
    padding: 48px 0;
}

section h2 {
    margin-bottom: 16px;
}

section p {
    margin-bottom: 8px;
}

.restaurant,
.restaurant-front,
.restaurant-menu {
    margin-right: 32px;
}

#about,
.about-title {
    background-color: #bc535f;
    color: #eff;
}

#contact {
    background-color: #bc535f;
    color: #eff;
}

.social-links img {
    width: 42px;
}

.social-links li {
    display: inline;
    margin-right: 8px;
    align-items: center;
}

.social-links li a {
    text-decoration: none;
}

#contact .container {
    display: block;
}

.contact-methods {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea,
form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea {
    resize: none;
    height: 180px;
}

section h3 {
    margin-bottom: 16px;
}

form button {
    background-color: #652E34;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #921f2d;
}

input:focus, textarea:focus {
    outline-color: #652E34;
}

footer {
    background-color: #a23642;
    color: #eff;
    padding: 16px 0;
}
