/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    width: 100%;
}

.counter-text {
    font-size: 100px; /* Fixed size */
    color: black;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

#counter {
    font-size: 10vw; /* Responsive font size */
    font-weight: bold;
    color: red;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter-text {
        font-size: 12vw;
    }

    #counter {
        font-size: 14vw;
    }
}
