html {
  scroll-behavior: smooth;
}
body,
html {
  background-color: #040e21;
  padding: 0;
  margin: 0;
  position: relative;
}

body{
  text-align: center;
  margin: 0 auto;
  font-family: Montserrat;
  background-color: #040e21;
  color: white;
}
.clock{
  height: 300px;
  width: 300px;
  margin: 20px auto;
  border: 2px solid  #040e21;
  box-shadow: 0 0 0px 2.5px SkyBlue;
  border-radius: 100%;
  cursor: pointer;
}
#grad {
    background: -webkit-gradient(linear, top, bottom, color-stop(100%,#22262B), color-stop(40%,#00F));
    background: -moz-linear-gradient(top center, #22262B 100%, #00F 40%);
    background: -o-linear-gradient(top, #22262B 100%, #00F 40%);
    background: linear-gradient(to bottom, #22262B 100%, #00F 0%);
}
h1{
  font-size: 25px;
  font-family: "Inter", sans-serif;
  background: -webkit-linear-gradient(90deg, #7928ca, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3{
  font-size: 60px;
  background: -webkit-linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", sans-serif;
}
.timers div{
  display: inline-block;
  margin: 0px 20px;
}
.in{
  display: inline-block;
  margin: 5px;
}
button{
  color: white;
  background-color: #040e21;
  border:0;
  outline: 0;
}
button:hover{
  cursor: pointer;
}
#break, #count, button{
  font-size: 40px; 
}
.title, .timer{
  font-size: 50px;
  margin-top: 60px;
}
.clock-info{
  padding-top: 30px;
}