* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
  background-color: rgb(230, 230, 230);
  padding: 10px 0;
}
h1 {
  font-size: 20px;
  color: rgb(0, 0, 0);
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  background-color: rgb(235, 233, 233);
  padding: 10px ;
  box-shadow: 1px 1px 6px;
  border-radius: 20px;
}
.stop-watch-container {
  width: 300px;
  padding: 10px;
  background-color: rgb(227, 226, 226);
  box-shadow: 0px 6px 6px rgb(27, 26, 26);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 30px;
}
.buttons_container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.buttons_container button {
  border: none;
  padding: 5px 20px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  width: 90px;
  box-shadow: 0px 4px 4px;
}
.start:active {
  background-color: white;
}
.stop:active {
  background-color: white;
}
.reset:active {
  background-color: white;
}


