body{
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(238,174,202);
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

.counter-value{
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.buttons-position, .reset-container{
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

button{
  background-color: rgb(64, 160, 238);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover{
  box-shadow: 0 0 20px 0 rgb(85, 108, 134);
}

.plus-button{
  height: 50px;
  width: 50px;
  font-size: 30px;
}

.minus-button{
  margin-right: 10px;
  height: 50px;
  width: 50px;
  font-size: 30px;
}

.reset-button{
  padding: 20px;
  font-size: 23px;
  font-weight: bold;
  background-color: rgb(216, 245, 170);
}