html,
body {
  border: 0;
  margin: 0;
  font-family: 'Red Rose', sans-serif;
  font-size: 17px;
  background-color: #000;
  width: 100%;
  height: 100%;
  touch-action: none;
}
h1,
h2,
h3 {
  color: #e4a620;
  font-family: 'Cinzel Decorative', sans-serif;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.5);
}
img {
  max-width: 100%;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.show-flex {
  display: flex !important;
}
.show-grid {
  display: grid !important;
}
section {
  width: 100%;
  height: 100%;
}
.fadein {
  animation: fadein 0.5s linear forwards !important;
}
.fadein.long {
  animation: fadein 1s linear forwards !important;
}
.fadein.long2 {
  animation: fadein 2s linear forwards !important;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeout {
  animation: fadeout 0.5s linear forwards !important;
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.mobileonly {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 30%;
  aspect-ratio: 2/1;
  text-align: center;
  color: white;
}
