:root {
    --light: #ffffff;
    --dark: #242424;
    --font-size: 10.5vh;
    --line-height: 11vh;
}

::selection {
    background-color: var(--dark);
    color: var(--light);
}

*,
html {
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    margin: 0;
    padding: 20px;

    text-align: center;

    width: 100vw;
    height: 100vh;
    border-top: 0;
    border-left: 0;
    position: relative;

    font-family: 'Times New Roman', Times, serif;
}

h1 {
    font-weight: 200;
    color: var(--light);
    text-align: center;
    margin: 10px 0 20px 0;
}
p {
    font-size: 20px;
    line-height: 26px;
}
#edition {
    margin-bottom: 10px;
}

/* NAV */
nav {
    position: fixed;
    bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    flex-direction: row;

    gap: 30px;
    width: 100%;
    left:0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.5s ease-in-out;
}

nav a:hover {
    letter-spacing: 4px;
}

/* BUTTON */
#billboard-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px;
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 10px;
    height: fit-content;
    border: 1px solid #000000;
    display: none;
}

#billboard-copy {
    color: var(--light);
    display: flex;
    flex-direction: column;
}

.billboard-text {
    line-height: var(--line-height);
    font-size: var(--font-size);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.billboard-date,
.billboard-time {
    font-size: 16px;
}

.billboard-date {
    margin-bottom: 5px;
}

/* ARCHIVE */
#archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.archive-item {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.archive-text {
    font-size: 20px;
}

.archive-date-time {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    font-size: 16px;
}