

body{
    background: #679186;
  }
  .container{
      background-color: #fdebd3;
      width: 40%;
      min-width: 500px;
      position: absolute;
      transform: translate(-50%,-50%);
      top: 50%;
      left: 50%;
      padding: 20px 0;
      padding-bottom: 50px;
      border-radius: 10px;
  }

h1{
    position: relative;
    width: 92%;
    background: #ffffff;
    left: 4%;
    padding: 40px 0;
    font-family: 'Roboto mono',monospace;
    color: #0593d4;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    box-shadow: 3px 2px 20px rgba(0,139,253,0.25);
}

  .timerDisplay{
    position: relative;
    width: 92%;
    background: #ffffff;
    left: 4%;
    padding: 40px 0;
    font-family: 'Roboto mono',monospace;
    color: #0381bb;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,139,253,0.25);
}


.buttons{
    width: 90%;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
.buttons button{
    width: 120px;
    height: 45px;
    background-color: #ffa822;
    color: #ffffff;
    border: none;
    font-family: 'Poppins',sans-serif;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.buttons button:nth-last-child(2){
    background-color: #134e6f;
  }
  .buttons button:nth-last-child(1){
    background-color: #ff6150;
  }



  