@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", sans-serif;
}

body {
  background: #121212;
}

.container {
  width: 500px;
  margin: 80px auto;
}

.stopwatch-container{
    border: 2px solid #424242;
    border-radius: 50%;
    padding: 4px;
}
.stopwatch {
  width: 400px;
  height: 400px;
  margin: 60px auto;
  border-radius: 50%;
  border: 5px dotted #424242;
  outline: 15px solid #424242;
  background-color: #181818;

  display: flex;
  justify-content: center;
  align-items: center;
}

.stopwatch h1 {
  font-size: 80px;
  font-weight: 600;
  color: #fff;
}

.stopwatch-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

button {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  background-color: #b3b3b3;
  border: none;
  outline: none;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

button:nth-child(2) {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 45px;
}