.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 850px) {
  .container {
    padding-top: 20vh;
  }
}

@media (min-width: 851px) {
  .container {
    padding-top: 15vh;
  }
}

header {
  color: var(--highlight-color);
}

.word-display {
  font-size: 2em;
  margin-bottom: 20px;
  letter-spacing: 5px;
  color: var(--highlight-color);
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
}

footer {
  position: sticky;
  bottom: 0;
}

footer > div {
  margin-right: 10px;
}

.hidden {
  display: none;
}
