.back-img{
    background-image: url("/img/background.png");

    height: 100vh;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blink_obj {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.center{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-timer-text{
    font-size: 5rem;
    font-weight: bold;
}

.timer-text{
    font-size: 40rem;
    font-weight: bold;
}

@media screen and (max-width: 2100px) {
    .timer-text{
        font-size: 30rem;
    }
}

@media screen and (max-width: 1400px) {
    .timer-text{
        font-size: 20rem;
    }
}

@media screen and (max-width: 1000px) {
    .timer-text{
        font-size: 12rem;
    }
}