* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    user-select: none;
}

body {
    background-color: #690069;
    display: flex;
    flex-direction: column; /* Change to column layout */
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    text-align: center; /* Center text */
    color: white; /* Change text color to white */
}

/* Add styles for the counter */
#counter {
    color: black; /* Change counter color to black */
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    margin-right: 15px; /* Add space between counter and text */
    margin-left: 15px; /* Add space between counter and text */
}

/* Update the .text class to center text around the middle of the counter */
.text {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    /* Additional styles can be added here if needed */
}

#clickcounter {
    color: black; /* Change counter color to black */
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    margin-right: 15px; /* Add space between counter and text */
    margin-left: 15px; /* Add space between counter and text */
}

.click {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    /* Additional styles can be added here if needed */
}

