* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(90deg, #000, #3533cd);
  height: 100vh;
  color: #fff;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

#stopwatch {
  position: relative;
  width: 220px;
  height: 220px;
}

.outer-circle {
  width: 220px;
  height: 220px;
  border: 3px solid white;
  border-radius: 50%;
}

.inner-circle {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 170px;
  height: 170px;
  border: 3px solid white;
  border-radius: 50%;
}

.top-connector {
  position: absolute;
  width: 30px;
  height: 25px;
  border: 4px solid #fff;
  top: -24px;
  left: 50%;
  transform: translate(-50%);
}

.top-button {
  position: absolute;
  width: 70px;
  height: 25px;
  border: 4px solid #fff;
  top: -48px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 10px;
}

.side-button {
  position: absolute;
  width: 40px;
  height: 20px;
  border: 3px solid white;
  border-radius: 10px;
}

.side-left {
  top: 30px;
  left: -4px;
  transform: rotate(-49deg);
}

.side-right {
  top: 30px;
  right: -4px;
  transform: rotate(49deg);
}

#time {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 24px;
}

#actions{
    display: flex;
    margin-top: 10%;
    gap: 10px;
}

#actions button{
    width: 100px;
    height: 50px;
    border: none;
    background-color: #fff;
    border-radius: 10px;
    color: #3533cd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#actions button:hover{
    background-color: #dbdbdb;
    color: #0f0f3c;
}