#buttons {
    display: flex;
    align-items: center;
    width: 80%;
    margin-top: 1rem;
  }

  .active-button {
    background-color: darkgreen;
  }
  
  .disabled-button {
    background-color: rgb(0, 100, 0, 0.4);
    cursor: initial;
    pointer-events: none;
  }

  .button {
    border-radius: 10px;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
  }

  @media only screen and (max-width: 576px) {

    .button{
        font-size: 1rem;
    }

  }