*,
*::before,
*::after,
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  align-items: center;
  background-color: red;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

main {
  text-align: left;
  width: 75%;
}

.question {
  margin-bottom: 5rem;
}

.question__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.answer {
  display: block;
  font-family: "Roboto Mono", monospace;
  font-size: 8rem;
}

.timer__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.timer {
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.timer__subtitle a {
  font-weight: 700;
}

.timer__subtitle {
  font-size: 0.85rem;
  margin: 0;
}

.created-by {
  bottom: 1em;
  font-size: 0.7em;
  position: absolute;
  text-align: center;
}

.creator-link {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 850px) {
  body {
    padding: 2em 0;
  }

  .question {
    margin-bottom: 3rem;
  }

  .created-by {
    bottom: 0;
    margin-top: 3em;
    position: unset;
  }

  .created-text:last-child {
    margin-bottom: 0;
  }
}
