* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

body {
  background-color: rgba(0, 0, 0);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stopwatch {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid white;
}

.stopwatch p {
  font-size: 40px;
}

.milisecond-container {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 5px;
}

.stopwatch .miliseconds {
  position: absolute;
  top: -6px;
  font-size: 30px;
}

.stopwatch-controller {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.stopwatch-controller button {
  cursor: pointer;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  background-color: transparent;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

button:hover {
  background-color: rgba(255, 255, 255, 0.372);
}
