
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box {
    background-color: #121212;
    border: 2px solid #121212;
    border-radius: 10px;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.4);
}
.box header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}


#countlabel{
    display: block;
    text-align: center;       
    font-size: 10em;
    font-weight: bold;
    margin: 20px 0;
}
#buttonBtn{
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    
}

.buttons{
    padding: 10px 20px;
    font-size: 1.5em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #FFD700;
    color: #060606;
    transition:  transform 0.2s,background-color 0.25;  

}


.buttons:hover{
    transform: scale(1.1);
    background-color: #FFC107;
}
/* Mobile styles */
@media (max-width: 768px) {
    #countlabel {
        font-size: 6em; 
    }

    .box {
        padding: 15px 25px; 
    }

    .buttons {
        font-size: 1.2em; 
        padding: 8px 16px; 
    }

    .box header {
        font-size: 1.2em; 
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
    #countlabel {
        font-size: 5em; 
    }

    .box {
        padding: 10px 20px;
    }

    .buttons {
        font-size: 1em;
        padding: 6px 12px; 
    }

    .box header {
        font-size: 1em;
    }
}

