* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.75em;
    font-weight: 400;
    /* background-color: #f6f5f0;
    color: #333; */
    background-color: #000;
    color: #d7c4a3;
}

.page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container {
    padding: 5px;
}

header {
    padding: 20px;
    border-bottom: solid 1px #4b3621;
    /* background-color: #4b3621; */
    background-color: #000;
    text-align: center;
}

header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

main {
    flex: 1 auto;
}

footer {
    display: block;
    /* background-color: #232323;
    color: #f3f3f3; */
    background-color: #d4c5aa;
    color: #4b3621;
    text-align: center;
    font-size: 0.9em;
}

section {
    width: 50%;
    margin: 10px auto;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    section {
        width: 90%;
    }
}

.logo {
    margin-right: 10px;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    color: #d7c4a3;
}

h1 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 36px;
}

h2 {
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}

h3 {
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

p {
    text-align: justify;
    line-height: 1.4;
}

a,
a:visited {
    color: #d7c4a3;
}

a:hover,
a:active {
    text-decoration: none;
    opacity: 0.6;
}

a.button,
a.button:visited {
    padding: 10px 15px;
    background-color: #4b3621;
    color: #d7c4a3;
    border: solid 1px #8e7b5d;
    border-radius: 10px;
    /* border-top-left-radius: 10px;
    border-bottom-right-radius: 10px; */
    text-decoration: none;
}

a.button:hover,
a.button:active {
    opacity: 0.8;
}

.center {
    padding: 10px 0;
    text-align: center;
}