
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');


body {
    background: #fff;
    color: #181818;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    position: relative;
    margin: 0;
    padding: 0;
}


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

.logo {
    width: 70vw;
    max-width: 900px;
    height: auto;
}

.tagline {
    font-size: 2em;
    text-align: center;
    margin: 1em;
}

.checker {
    z-index: -1;
    color: #EFEFEF;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 40vh;
    width: auto;
}


@media (prefers-color-scheme: dark) {

    body {
        background: #181818;
        color: #fff;
    }
    .checker {
        color: #202020;
    }

}