* {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2em;
    background: #111112;
    color: whitesmoke;
    overflow-x: clip;
}

.greeter_box {
    display: flex;
}

#green_arrow {
    color: lawngreen;
    margin-right: 10px;
}

.ascii_art_makeup {
    font-size: 14px;
    white-space: pre;
    background-color: transparent;
    color: lawngreen;
    line-height: 0.3em;
}

#main_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
    gap: 1rem;
    margin-left: 1.3rem;
}

.fill_in_text {
    width: min(90vw, 800px);
}

.block_div {
    width: min(90vw, 800px);
}

#countdown {
    color: lawngreen;
    background-color: #222223;
    border-width: 1px;
    padding: 4px;
    border-color: #444445;
    border-style: groove;
    border-radius: 10px;
    box-shadow: 0 0 10px #222223;
    position: fixed;
    bottom: 4px;
    right: 4px;
}

#bg_canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#logo_img {
    max-width: 95%;
    height: auto;
    /*Wipe in using clip path*/
    animation: 0.5s linear 0s 1 wipeIn;
    animation-play-state: paused;
}

#legal_stuff {
    animation: 0.5s linear 0s 1 wipeIn;
    animation-play-state: paused;
}

#name_container {
    animation: 0.5s linear 0s 1 wipeIn;
    animation-play-state: paused;
}

.name_container_text_styling {
    color: #666667;
}

@keyframes wipeIn {
    0% {
        clip-path: xywh(0 0 0% 100%);
    }
    100% {
        clip-path: xywh(0 0 100% 100%);
    }
}