@font-face {
    font-family: 'Europa Grotesk';
    src: url('fonts/EuropaGroteskSH-LigExt.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

.fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: monospace;
    font-size: 8px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .fireworks {
        color: rgba(255, 255, 255, 0.9);
    }
}

html,
body {
    font-family: 'Europa Grotesk', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.8;
    background: #fff;
    color: #000;
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

main {
    display: flex;
    align-items: center;
    padding-left: 10vw;
}

.content {
    white-space: pre-wrap;
    word-wrap: break-word;
}

#countdown {
    font-variant-numeric: tabular-nums;
}

::selection {
    background: #000;
    color: #fff;
}

.cal-btn {
    color: #000;
    text-decoration: underline;
}

.address-link {
    color: #000;
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {

    html,
    body {
        background: #000;
        color: #fff;
    }

    .cal-btn {
        color: #fff;
    }

    .address-link {
        color: #fff;
    }

    ::selection {
        background: #fff;
        color: #000;
    }
}