body {
  margin: 0;
  padding: 0;
  height: 100vh;

  font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  text-align: center;
}

body.mauricius {
  background-color: lightskyblue;
  background-image: url('media/mauricius.jpeg');
}

body.christmas {
  background-color: lightskyblue;
  background-image: url('media/christmas.jpeg');
}

h1 {
  font-variant: small-caps;
}

#main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7em;
}

button {
  font-size: 1.1em;
  margin-right: 0.5em;

  background: hsla(0, 100%, 75%, 0.4);
  border: 2px hsl(0, 100%, 75%) solid;
  border-radius: 5px;

  &:hover {
    background: hsla(0, 100%, 75%, 0.6);
    border: 2px hsl(0, 100%, 85%) solid;
  }
}

#app {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#countdown-container {
  padding: 1em;
  border-radius: 1em;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  column-gap: 2em;
  row-gap: 1em;
}

.countdown-container-mauricius {
  background: hsla(211deg, 100%, 25%, 62%);
  border: 4px hsl(211deg, 100%, 57%) solid;
}

.countdown-container-christmas {
  color: hsl(41 100% 80% / 1);
  background: hsl(181deg 74% 15% / 80%);
  border: 4px hsl(181 74% 49%) solid;
}

.digit {
  font-size: 3em;
}

.digit-text {
  text-transform: uppercase;
  height: auto;
}
