/* Google fonts import link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #027896;
  padding: 50px;
}
.wrapper{
  user-select: none;
}
h1{
    font-size: 50px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    color: #340b69;
}
.wrapper .time{
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.09);
  padding: 0 10px;
}
.wrapper .time span{
  width: 100px;
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  color: rgb(43, 41, 41);
}
.time span.colon{
  width: 10px;
}
.time span.ms-colon,
.time span.millisecond{
  color: #0e067e;
}
.wrapper .buttons{
  text-align: center;
  margin-top: 20px;
}
.buttons button{
  padding: 6px 16px;
  outline: none;
  border: none;
  margin: 0 5px;
  color: #0e067e;
  background: #fff;
  font-size: 19px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.09);
}
.buttons button.active,
.buttons button.stopActive{
  pointer-events: none;
  opacity: 0.8;
}
.inputs {
    justify-content: center;
}
.inputs .form-control {
    margin: 0 10px;
}

.inputs .form-group {
    display: inline-flex;
    margin: 0 15px;
    align-items: flex-end;
}

.buttons .btn{
    margin: 0 15px;
}
 .pages_button{
    padding: 6px 20px;
    outline: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: none;
    margin: 40px auto;
    color: #0e067e;
    position: relative;
    background: rgb(90, 140, 233);
    font-size: 50px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;

}