@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #0c141f;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0c141f;
        --text-color: #ffffff;
    }
}

.rotate {
    animation: rotation 20s;
}

.linear {
    animation-timing-function: linear;
}

.infinite {
    animation-iteration-count: infinite;
}

body {
    background-color: #282c34;
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
    color: var(--text-color);

    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    margin: 0px;
}

.img {
    pointer-events: none;
    margin-bottom: 60px;
    width: 300px;
}

.container {
    text-align: center;
    width: 100%;
}

.small {
    font-size: 16px;
}

@media screen and (max-width: 800px) {
    .container {
        width: 80%;
    }

    .img {
        width: 100%;
        margin-top: 20px;
    }
}