* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto;
  font-weight: 300;
  background: linear-gradient(to left, #635bfc, #8ffcf0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap {
  margin-top: 100px;
  display: inline-block;
  min-width: 360px;
  min-height: 400px;
  padding: 50px 15px;
  background-color: #fff;
  box-shadow: 0 5px 25px #0000004a;
  border-radius: 8px;
  text-align: center;
}

#timer {
  position: relative;
  width: 250px;
  height: 250px;
  line-height: 250px;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 auto;
  background-color: #fff;
}

p {
  font-weight: 400;
  color: gray;
  padding: 30px 0;
}

.controls button {
  padding: 14px 25px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-weight: 400;
  background-color: #24dcc6;
  cursor: pointer;
  box-shadow: all ease 0.1s;
}

#startStop {
  margin-right: 20px;
}

.controls button:active {
  transform: scale(0.95);
}

.laplist {
  padding-top: 23px;
  padding-left: 40px;
}

ul {
  list-style-type: none;
  margin-left: -45px;
}

li {
  margin-bottom: 10px;
  font-size: 20px;
  color: gray;
}

/* Circle Animation */
#timer svg {
  position: absolute;
  left: 0;
}

.defaultCircle {
  opacity: 0.3;
}

#animateCircle.addAnimation {
  stroke-dasharray: 770;
  stroke-dashoffset: -770;
  animation: animateCircle 60s linear infinite;
  animation-play-state: paused;
}

@keyframes animateCircle {
  from {
    stroke-dashoffset: 0;
  }
}
