body {
  font-family: monospace;
  font-size: 30px;
  background-color: rgb(34, 40, 49);
  color: rgb(199, 199, 199);
  text-align: center;
}

#title {
  font-size: 50px;
  margin-bottom: 10px;
}

button {
  padding: 7px 20px;
  margin-top: 20px;
  border-radius: 5px;
  border: solid;
  border-color: transparent;
  font-family: monospace;
  font-weight: 500;
  font-size: 14;
  background-color: rgb(151, 176, 192);
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}

button:hover {
  background-color: rgb(111, 132, 145);
  color: white;
}

#stop {
  background-color: rgb(192, 151, 151);
} 
#stop:hover {
  background-color: rgb(176, 111, 111);
}

#reset {
  background-color: rgb(192, 192, 151);
} 
#reset:hover {
  background-color: rgb(176, 176, 111);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid;
  border-color: white;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  padding-bottom: 50px;
  width: 50%;
  box-sizing: border-box;
  border-radius: 20px;
}

