@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400;700;900&family=Sarala:wght@400;700&family=Martian+Mono:wght@200;400;600;800&display=swap");
* {
  position: relative;
  box-sizing: border-box;
}

.no-display {
  display: none;
}

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

button:hover, button:focus {
  cursor: pointer;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  font: normal 16px "Sarala", sans-serif;
  line-height: 1.3;
  background: maroon;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 url("../images/bg_looped.jpg") repeat-x 0 0/2160px 100%;
  opacity: 1;
  animation: bgPulse 6.25s linear 0s infinite alternate;
}
@keyframes bgPulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.7;
  }
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
#root:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

header,
main,
footer {
  z-index: 2;
  padding: 1rem;
}

header {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 1.5em;
}
@media (max-width: 1024px) {
  header {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  header {
    font-size: 0.5em;
  }
}
header .logo {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
header .logo img {
  width: 100%;
}
header .logo .reflections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1em;
}
header .logo .reflections img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
@keyframes glowmotion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header .logo .reflections img:nth-child(1) {
  top: 0;
  filter: drop-shadow(0px 0px 20px orange);
  opacity: 0;
  animation: glowmotion 5s linear 0s infinite alternate;
}
header .logo .reflections img:nth-child(2) {
  top: 1em;
  opacity: 0.25;
}
header .logo .reflections img:nth-child(3) {
  top: 2em;
  opacity: 0.125;
}
header .logo .reflections img:nth-child(4) {
  top: 3em;
  opacity: 0.0625;
}
header .logo .reflections img:nth-child(5) {
  top: 4em;
  opacity: 0.01325;
}
header .logo .reflections img:nth-child(6) {
  top: 5em;
  opacity: 0.015625;
}

main {
  flex: 1 0;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
main .content {
  z-index: 2;
  width: 100%;
}
main .content .callout {
  text-align: center;
  margin-bottom: 1em;
}
main .content .callout * {
  text-shadow: 0.05em 0.05em 0.05em #000;
}
main .content .callout h1 {
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
main .content .callout p {
  font-size: 2em;
}

footer:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.25;
}
footer .content {
  z-index: 2;
  text-align: center;
}/*# sourceMappingURL=main.css.map */