* {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color:lightyellow;
}

.ah1 {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.counter-container {
    text-align: center;
    font-size: 60px;
}


.button-init-counter {
    border: 2px solid rgba(0, 128, 0, 0.363);
    width: 150px;
    height: 50px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    background-color: lightgreen;
    cursor: pointer;
    margin-top: 30px;
}

.button-stop-counter {
    border: 2px solid rgb(238, 87, 87);
    width: 150px;
    height: 50px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    background-color: lightcoral;
    cursor: pointer;
}