/**
 * Copyright (c) 2023 Evert Provoost.
 * Some rights reserved, see LICENSE.
 */

@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('ga1-num.woff2') format('woff2');
}

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

html, body, p {
    padding: 0px;
    margin: 0px;
}

body {
    user-select: none;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: underline dotted;
}

a:hover {
    text-decoration: underline;
}

#clock {
    color: white;
    font-size: min(50vh, 30vw);
    font-feature-settings: 'tnum';
    font-weight: 800;
    font-family: 'Gothic A1', sans-serif;
    /* Tweak font baseline. */
    margin-bottom: -0.2em;
}

#info {
    color: gray;
    padding: 2em;
    font-size: 16px;
    font-family: sans-serif;
}
