body {
    font-family: serif;
    margin: 0;
    padding: 0;
    background-color: #F2F0EF;
    color: #5c3d2e;

    display: flex;
    flex-direction: column;

    font-size: 1.1rem;
}
body.error {
    align-items: center;
}
a {
    color: #5c3d2e
}
header {
    background-color: #f7e7ce;
    padding: 0.5rem;
    color: #5c3d2e;
    border-bottom: 2px solid #d4af7a;
    font-family: 'Playfair Display', serif;

    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  }
h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #8b5e3c;
    margin: 0;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
nav a {
    color: #5c3d2e;
    margin: 0 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
}
.nav-links {
    display: flex;
    justify-content: center;
}
.container {
    width: 75%;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border: 2px solid #d4af7a;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
section {
    max-width: 75%;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
section ul {
    list-style: none;
    padding-left: 0;
}
section li {
    margin-bottom: 0.8rem;
}
section p {
    line-height: 1.5rem;
}
.rsvp-button,
.gift-button {
    background-color: #c9a47e;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}
.rsvp-button:link,
.gift-button:link {
    text-decoration: none;
}
.rsvp-button:visited,
.gift-button:visited {
    text-decoration: none;
}
.rsvp-button:hover,
.gift-button:hover {
    text-decoration: none;
    background-color: #a3825a;
}
.rsvp-button:active,
.gift-button:active {
    text-decoration: none;
}