@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #100d38;
  color: white;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 45px;
  margin: 50px;
  font-weight: 900;
}

.time {
  display: flex;
  margin: 5px;
  font-size: 45px;
}

.time div {
  margin: 5px;
}

button {
  border: none;
  border-radius: 5px;
  font-size: 20px;
  color: black;
  background-color: white;
  padding: 8px;
  margin: 8px;
  cursor: pointer;
}

button:active {
  transform: scale(1.08);
}

.time-box {
  display: flex;
  flex-direction: column;
  margin: 25px;
  font-size: 20px;
  height: 100%;
  overflow: auto;
  padding: 0 50px;
}

.time-box div {
  margin: 1px;
}
