* {
    margin: 0;
    padding: 0;
  }
  
  body {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: sans-serif;
  }
  
  .container__title {
    padding: 10px 20px;
    font-size: 40px;
    text-align: center;
  }
  
  .container {
    height: 200px;
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .container__labels,
  .container__inputs,
  .container__btns {
    display: flex;
    justify-content: space-between;
  }
  
  .container__btns {
    margin-top: 20px;
  }
  
  .container__labels--label {
    width: 20%;
    text-align: center;
    font-size: 30px;
    padding: 5px 10px;
  }
  
  .container__inputs--time {
    justify-self: center;
    align-self: center;
    border: none;
    font-size: 50px;
    width: 90px;
    height: 50px;
  }
  
  .container__inputs--colon {
    justify-self: center;
    align-self: center;
    font-size: 30px;
    margin: 0;
    padding: 5px 10px;
  }
  
  .btn {
    width: 48%;
    height: 50px;
    font-size: 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
  }
  
  input {
    text-align: center;
    outline: none;
  }
  
  .start {
    background-color: green;
  }
  
  .pause {
    display: none;
    background-color: red;
  }
  
  .reset {
    background-color: blue;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

@media screen and (max-width: 576px) {
  .container {
    width: 350px;
  }

  .container__labels--label {
    font-size: 25px;
  }
}
