body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.center-text {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 12vw;
}

#visit-count {
    font-size: 5vw;
    transition: transform 0.15s, opacity 0.15s;
    opacity: 0;
}

@media only screen and (max-width: 600px) {
    .center-text {
        font-size: 20vw;
    }

    #visit-count {
        font-size: 10vw;
    }
}

@media only screen and (min-width: 600px) {
    .center-text {
        font-size: 18vw;
    }

    #visit-count {
        font-size: 8vw;
    }
}

@media only screen and (min-width: 768px) {
    .center-text {
        font-size: 16vw;
    }

    #visit-count {
        font-size: 7vw;
    }
}

@media only screen and (min-width: 992px) {
    .center-text {
        font-size: 14vw;
    }

    #visit-count {
        font-size: 6vw;
    }
}

@media only screen and (min-width: 1200px) {
    .center-text {
        font-size: 12vw;
    }

    #visit-count {
        font-size: 5vw;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ccc;
    }
}