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

/* Body */

html, body {
    font-family: 'Didact Gothic', sans-serif;
    background-color: #2a1832;
    color: #1a0f22;
    margin: 0;
    height: 100%;
}

.container {
    width: 1000px; /* container width */
    background-color: #e8d5b7;
    border-left: 5px solid #c9a84c; 
    border-right: 5px solid #c9a84c; 
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    min-height: 100vh;
    box-sizing: border-box;
}

.container .content {
    max-width: 700px; /* text width */
    margin-left: auto;
    margin-right: auto;
    color: #1a0f22;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #c9a84c;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #c9a84c;
}
.divider::before { margin-right: 10px; }
.divider::after { margin-left: 10px; }

img {
    border: none;
    max-width: 100%;
}

.img_centered {
    display: block;
    margin: 0 auto;
}

.img_w_border {
    border: 2px solid #c9a84c;
}

h1 {
    color: #2a1832;
    font-size: 36px;
    margin-top: 20px;
}

h3 {
    color: #4a2d5a;
    font-size: 28px;
    margin: 20px 0;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
    color: #1a0f22;
}

/* Links */

a {
    color: #7a3d9a;
    text-decoration: underline;
}

a:hover {
    color: #c9a84c;
}

.white-link {
    color: white;
    text-decoration: none;
}

.black-link {
    color: #1a0f22;
    text-decoration: none;
}

/* Special */

ul {
    text-align: center;
    list-style-position: inside;
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
    color: white;
}
