body {
      font-family: Arial, sans-serif;
      text-align: center;
      margin-top: 50px;
    }

#counterLabel {
    text-align: center;
    font-size: 10em;
    display: block;
}

.buttonsContainer {
    text-align: center;
}

.buttons {
    padding: 0.6em 1.3em;
    font-size: 1.2em;
    background-color: rgb(66, 180, 71);
    border-radius: 8px;
    color: white;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  background-color: rgb(36, 120, 41);
}