h1 {
  font-size: 80px;
  text-align: center;
  margin: auto;
  margin-top: 60px;
}

.clock {
  width: 60%;
  margin: auto;
  margin-top: 50px;
  padding: 30px 100px;
}

.time {
  color: #6C4AB6;
  border-bottom: black solid 5px;
  font-size: 100px;
  width: 70%;
  text-align: center;
  margin: auto;
}

.btns {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
}

.btns a {
  font-size: 70px;
  color: white;
  text-decoration: none;
  padding: 10px 50px;
  border-radius: 20px;
  box-shadow: 0rem 0.3rem 1.2rem rgba(0,0,0,0.622);
  transition: all 0.5s;
}

.btns a:hover {
  transform: translateY(-10px);
  box-shadow: 0rem 1rem 2rem rgba(0,0,0,0.622);
}

.btns a:active {
  transform: translateY(-5px);
  box-shadow: 0rem 0.6rem 1.5rem rgba(0,0,0,0.622);
}

.pause, .resume {
  background-color: black;
}
