* {
  margin: 0;
  padding: 0;
}

main {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Georgia, serif;
  background: #fffff8;
  color: #111;
}

h1 {
  font-size: 4em;
  margin-bottom: 0;
}

p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

#time {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#time.reverse {
  flex-direction: column-reverse;
}

#time span {
  margin: 0 0.60rem;
}



input {
  margin-bottom: 0.5rem;
  display: none;
}

label {
  display: none;
}

.version {
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  h1 {
    font-size: 5em;
  }

  #time {
    flex-direction: row;
  }

  #time.reverse {
    flex-direction: row-reverse;
  }
}

footer {
  position: absolute;
  bottom: 1rem;
}

/* Adjust settings to sit slightly above footer */
#settings {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 3rem;
  gap: 1rem;
}