:root {
    --doc-height: 100%;
    --doc-width: 100%;
    --pundora-dark-gray: #2A2A2A;
    --pundora-gray: #343233;
    --pundora-steel: #78AF9F;
    --pundora-blue: #659CC8;
    --pundora-ice: #DEECE8;
}

html {
    width: 100vw;
    width: var(--doc-width);
    height: 100vh;
    height: var(--doc-height);
}

body {
    width: 100%;
    width: var(--doc-width);
    height: 100%;
    height: var(--doc-height);
    margin: 0;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    background: radial-gradient(ellipse at bottom, #1D1D1D 0%, #090A0F 100%);
}

.wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-element {
    font-size: 5em;
    color: var(--pundora-ice);
}

.date-element {
    font-size: 2em;
    color: var(--pundora-ice);
}