/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  background: url("back.jpeg");
    background-size: cover;
    background-position: 100% 45%;
}
body:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(2 2 2);
    position: absolute;
    top: 0;
    left: 0;
    opacity: .95;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.anim-wrapper{
    z-index: 1;
    width: 100rem;
    height: 100%;
    position: absolute;
    inset: 5rem auto 0%;
}
.coming-soon-cover{
    flex-direction: column;
    align-items: center;
    height: 100svh;
    width: 100%;
    min-height: 0;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
    overflow: hidden;
    display: flex;
}
.animated{
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: auto;
    position: relative;
    transform-style: preserve-3d;
    transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1.1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.anim-background{
    z-index: -2;
    width: 100%;
    height: auto;
    position: absolute;
}
.anim-highlight{
    z-index: 0;
    width: 100%;
    height: auto;
    position: absolute;
}
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-content img {
    width: 35%;
    margin: auto;
    animation: slideUp 1s ease-out forwards;
}
.hero-content {
    position: relative;
    z-index: 9999;
    animation: slideUp 1s ease-out forwards;
}
.hero-content h2 {
    text-align: center;
    color: #fff;
    margin-top: 5px;
    font-family: Changa;
    font-weight: 600;
    font-size: 35px;
    margin-top: 35px;
}
@keyframes rotate180 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.anim-foreground {
    z-index: -1;
    width: 100%;
    height: auto;
    position: absolute;
    animation: rotate180 .8s linear infinite;
}
.hero-content p {
    color: #d5d5d5;
    font-family: Changa;
    text-align: center;
    width: 50%;
    margin: auto;
}
@media screen and (max-width: 480px) {
    .coming-soon-cover {
      padding-top: 15%;
    }
    .hero-content img {
      width: 70%; 
    }
    .hero-content h2 {
      font-size: 40px;
      margin-top: 15px;
    }
    .hero-content p {
      width: 75%;
    }
    .animated {
      transform: translate3d(0px, 0px, 0px) scale3d(0.7, 0.65, 0.7) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }
}