* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", serif;
}

body {
  background: url('image.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #008b8b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.stopwatch {
  background-color: rgba(255, 20, 147, 0.9);
  padding: 20px 25px;
  border-radius: 15px;
}

.timerDisplay {
  font-size: 60px;
  font-weight: 500;
}

.buttons {
  margin-top: 20px;
}

.btn {
  font-size: 20px;
  background: none;
  border: none;
  color: #8b0000;
  background-color: var(--clr);
  padding: 15px 25px;
  margin-inline: 15px;
  border-radius: 10px;
  cursor: pointer;
}
