body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2em;


    
}


#countLabel {
    font-size: 100px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-shadow: #000 2px 4px 4px;
}

.countContainer {
    margin: 100px;
    width: 400px;
    height: 500px;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 6px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}

.buttonContainer{
    display: grid;
    gap: 15px;
    font-size: 20px;
    grid-template-columns: auto auto auto;
    margin-top: 20px;
    align-items: center;
    
}

.buttonContainer button{
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #4a5ab8;
    color: white;
    cursor: pointer;
}

.buttonContainer button:hover {
    background-color: #3b4a8a;
    transition: background-color 0.3s ease;
    box-shadow: 5px 6px 8px rgba(0, 0, 0, 0.15);
}

.buttonContainer button:active {
    transform: scale(0.95);
}


