*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  color: inherit;
}
html,
body {
  font-family: "Orbitron", sans-serif;
  font-variant-numeric: tabular-nums;
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* ================== */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgb(243, 243, 243);
  transition: 0.25s ease-in-out;
}
input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
.container {
  border: 2px dotted #b1b0b0;
  border-radius: 5px;
  padding: 10px 20px;
}

#time {
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.15s ease-in-out;
}
