:root {
  --dark-green: #071F15;
  --light-green: #70AD56;
}

* {
  font-family: neulis-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 110%;
  font-size: 13px;
  list-style: none;
}

.script-font {
  font-family: "miller-headline", serif;
  font-weight: 400;
  font-style: italic;
}

.light-green {
  color: var(--light-green);
}
.dark-green {
  color: var(--dark-green);
}

body {
  background-color: var(--dark-green);
  margin: 0;
  padding: 0;
  height: 100dvh;
  width: 100dvw;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 30px;
}

.coming-soon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 100dvh;
  max-width: 50vw;
  margin: auto;
}
h1 {
  font-size: 22px;
  text-align: right;
}
h1 > div {
  font-size: 24px;
}
nav {
  width: 100%;
}

nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

nav ul li a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  padding: 5px;
}
nav ul li a:hover {
  color: var(--light-green);
}

a:visited, a:active, a:link {
  color: #fff;
}



.coming-soon-wrapper img {
  width: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 10px;

}

@media screen  and (max-width: 512px) {
  .coming-soon-wrapper {
    max-width: 80vw;
  }

  header {
    flex-direction: column;
    gap: 25px;
  }

  h1 {
    text-align: center;
  }
}

header img, h1, h2, .main-image, a {
  opacity: 0;
}

header img {
  animation: fadeIn 0.5s ease-in-out .4s forwards ;
}
h1 {
  animation: fadeIn 0.4s ease-in-out .5s forwards ;
}
h2 {
  animation: fadeIn 0.5s ease-in-out .8s forwards ;
}
.main-image {
  animation: fadeIn 0.5s ease-in-out 1s forwards ;
}
nav ul li:nth-of-type(1) a {
  animation: fadeIn 0.5s ease-in-out 1s forwards ;
}
nav ul li:nth-of-type(2) a  {
  animation: fadeIn 0.5s ease-in-out 1.2s forwards ;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


