.theme-font {
  font-family: "Mystery Quest", cursive;
  font-weight: 400;
}

#theme-overlay.fadein {
  -webkit-animation: 5s ease 0s normal forwards 1 darkenin;
  animation: 5s ease 0s normal forwards 1 darkenin;
}

@keyframes darkenin {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@-webkit-keyframes darkenin {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

#theme-container {
  width: 100%;
  height: 100%;
}

#theme-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}

#theme-overlay img {
  position: absolute;
}
