@font-face {
    font-family: 'Cinzel';
    src: url(../fonts/Cinzel-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url(../fonts/Cinzel-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: 'EB Garamond';
    src: url(../fonts/EBGaramond-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url(../fonts/EBGaramond-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: 'UnifrakturMaguntia';
    src: url(../fonts/UnifrakturMaguntia-Regular.ttf);
    font-weight: normal;
}

:root {
    --background-color: #1a1a1a;
    --text-color: #fff;
    --shadow-color: #666;
    --highlight-color: #BE9847;
    --link-color: #d2b880;
    --border-radius: 10px;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'EB Garamond', serif;
    margin: 0;
    padding: 0;
}

img,
video {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--highlight-color);
    border-bottom: 4px solid var(--highlight-color);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    margin-top: 30px;
    font-family: 'EB Garamond', serif;
    font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: normal;
    margin-top: 1.3em;
}

p, td, li {
    font-size: 110%;
    hyphens: auto;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

iframe {
    border-radius: var(--border-radius);
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid var(--shadow-color);
}

th, td {
    padding: 10px;
    text-align: left;
}

td:first-of-type {
    min-width: 60px;
}

div.center {
    text-align: center;
}

div.text {
    padding: 20px;
}

.burger {
    width: 50px;
    height: 42px;
    background: #000;
    border: 2px solid var(--highlight-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-block;
    position: fixed;
    top: 20px;
    right: 20px;
}

.burger::before,
.burger::after,
.burger span {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.burger::before {
    top: 8px;
}

.burger span {
    top: 17px;
}

.burger::after {
    top: 26px;
}

.navigation-container {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navigation-container.active {
    opacity: 1;
    visibility: visible;
}

.navigation-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    text-align: center;
}

.navigation-container ul li {
    margin: 20px 0;
}

.navigation-container ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2em;
    font-family: 'Cinzel', serif;
}

.highlight {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 1.2em;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.date-container {
    display: flex;
    margin: 20px auto;
    width: auto;
    max-width: 400px;
    height: auto;
    letter-spacing: 0.25em;
    font-family: 'Cinzel', serif;
}

.date-container .date-left,
.date-container .date-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-container .date-left {
    flex-grow: 4;
}

.date-container .date-left span,
.date-container .date-right span {
    padding: 6px 0;
    display: block;
    border-top: 2px solid var(--highlight-color);
    border-bottom: 2px solid var(--highlight-color);
    min-width: 120px;
    text-align: center;
}

.date-container .date-center {
    flex-grow: 3;
    text-align: center;
}

.date-container .date-center .day {
    color: var(--highlight-color);
    font-size: 40px;
}

.date-container .date-right {
    flex-grow: 4;
}

footer {
    border-radius: var(--border-radius);
    border-top: 2px solid var(--highlight-color);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 70px;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    div.text {
        padding-left: 10px;
        padding-right: 10px;
    }

    .burger {
        top: inherit;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 400px) {
    .container {
        padding: 10px;
    }

    div.text {
        padding-left: 0;
        padding-right: 0;
    }
}