*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
  background: #448aff;
}

.container{
    
    width: 40%;
    min-width: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    padding: 20px 0;
    padding-bottom: 50px;
    border-radius: 10px;
}



.timerDisplay{
    position: relative;
    width: 92%;
    
    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: 9px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
.buttons button{
    
    width: 110px;
    height: 42px;
    background-color: hsl(208, 64%, 35%);
    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: #20b380;
  }
  .buttons button:nth-last-child(1){
    background-color: #d23332;
  }

  .timerDisplay{
    position: relative;
    width: 92%;
    background: #ffffff;
    left: 4%;
    padding: 10px 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);
}


.increment-button {
  /* Styling for the button */
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 12px 20px; /* Padding inside the button */
  border: none; /* Remove border */
  cursor: pointer; /* Change cursor on hover */
  font-size: 16px; /* Increase font size */
  transition: all 0.3s ease; /* Add transition effect */
}
/* Change button color on hover */
.increment-button:hover {
  background-color: #3e8e41;
}
/* Styling for the score display */
.score-display {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

