
@font-face {
  font-family: Kongtext Regular;
  src: url(fonts/kongtext.regular.ttf);
}

body {
    background-color: black;
    font-family: 'Kongtext Regular', monospace;
    color: white;
    

}

#main {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center ;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

#seasonnum {
    display: flex;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;

    /* gradient */
    background: radial-gradient(circle, #141414, #000000);
    justify-content: center;
    align-items: center ;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* text styling */
    font-size: 35vmin;
}

#timer {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;

    /* gradient */
    background: radial-gradient(circle, white, #acacac);
    justify-content: center;
    align-items: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* text styling */
    font-size: 3vmin;
}

#hint {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -3;
    top: 0;
    opacity: 0%;
}