body{
    background-image: linear-gradient(90deg, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    background-attachment: fixed;
}

.btn1 {
  padding: 10px 20px;
  background-color: #86B91B;
  color: #141313;
  border: none;
  font-family: 'Poppins',sans-serif;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.btn1:hover {
  transform: scale(1.05);
  transform: 0.2s;
}

.btn2 {
  padding: 10px 20px;
  background-color: #14B5C8;
  color: #141313;
  border: none;
  font-family: 'Poppins',sans-serif;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.btn2:hover {
  transform: scale(1.05);
  transform: 0.2s;
}

.btn3 {
  padding: 10px 20px;
  background-color: #D80D0D;
  color: #141313;
  border: none;
  font-family: 'Poppins',sans-serif;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.btn3:hover {
  transform: scale(1.05);
  transform: 0.2s;
}

*,
*:before,
*:after{
  
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container{
    background-color: #141313;
    width: 40%;
    min-width: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    padding: 60px 0;
    border-radius: 10px;
}
.timerDisplay{
    position: relative;
    width: 110%;
    background: linear-gradient(
        -135deg,
        #0048ce,
        #008bfd
    );
    left: -5%;
    padding: 40px 0;
    font-family: 'Roboto mono',monospace;
    color: #ffffff;
    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: 80%;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
