@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');

/*
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #18181b;
}
*/

#counter{
    background-color: #262626;
    border-radius: 8px;
 }

 #counter div{
    display: flex;
    align-items: center;
    justify-content: center;
  }

 #value{
    font-size: 4rem;
    color: #fff;
    min-width: 4rem;
    text-align: center;
  }

  button{
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .3s;
  }

  button:hover{
    opacity: .8;
  }

  .count-button{
    width: 6rem;
    height: 4rem; /* estava 6 */
    font-size: 3rem;
    background-color: #18181b;
    margin-right: 1rem;
  }
  .count-button:last-child{
    margin-right: 0rem;
    margin-left: 1rem;
  }
  /*
  #reset{
    width: 100%;
    font-size: 1.8rem;
    background-color: #3730a3;
    padding: .8rem 0;
    margin-top: 1rem;
  }
  */