/* css color vars */
:root {
    --site-grey: #3c3d48;
    --site-white: #f9f9f9;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--site-white);
    background-color: var(--site-grey);
    min-height: 100vh;
}

#clock {
    width: 100vw;
    height: 50vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#clock svg {
    height: 100%;
    width: auto;
}