* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #000;
  padding-top: 70px;
}
body header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  background: #000;
  padding: 1rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 2;
}
body header .logo {
  display: block;
  flex: 0 0 40px;
}
body header .logo h1 {
  display: block;
  margin: 0;
  padding: 0;
}
body header .logo h1 img {
  display: block;
}
body header nav {
  flex: 1;
}
body header nav ul {
  display: flex;
  align-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body header nav ul.left {
  justify-content: start;
}
body header nav ul.right {
  justify-content: end;
}
body header nav ul li {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
body header nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
body header nav ul li a:hover {
  text-decoration: underline;
}
body header nav ul li a img {
  display: block;
  aspect-ratio: 1/1;
  height: 40px;
}
body header nav ul#social-icons:target li {
  animation: pulseOutline 2s ease-in-out none 3;
  border-radius: 10px;
}
body header > nav,
body header > div {
  display: none;
}
body .hero-wrapper {
  max-height: 900px;
  min-height: calc(90vh - 70px);
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
}
body .hero-wrapper .logo-wrapper {
  display: none;
  position: absolute;
  top: 50px;
  left: 60px;
  width: 60px;
  aspect-ratio: 1/1;
}
body .hero-wrapper .logo-wrapper .logo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .hero-wrapper .hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.8;
}
body .hero-wrapper .hero-text {
  position: absolute;
  font-family: "Tinos", serif;
  color: #fff;
  text-align: center;
  font-size: 48px;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 3px 3px 5px #000;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}
body .coming-soon {
  width: 100%;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 3rem;
}
body .coming-soon a {
  color: #fff;
}
body .coming-soon .logo-wrapper {
  width: 40px;
  aspect-ratio: 1/1;
}
body .coming-soon .logo-wrapper .logo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .coming-soon nav {
  flex: 1;
  padding-top: 1.5rem;
}
body .coming-soon nav ul {
  display: flex;
  align-content: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
body .coming-soon nav ul li {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
body .coming-soon nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}
body .coming-soon nav ul li a img {
  display: block;
  aspect-ratio: 1/1;
  height: 40px;
}
@keyframes pulseOutline {
  0% {
    outline: 5px solid rgba(255, 165, 0, 0); /* fully transparent */
  }
  50% {
    outline: 5px solid rgba(255, 165, 0, 0.8);
  }
  100% {
    outline: 5px solid rgba(255, 165, 0, 0);
  }
}
@media screen and (min-width: 768px) {
  body header {
    justify-content: space-between;
  }
  body header > nav,
  body header > div {
    display: block;
  }
  body .hero-wrapper {
    max-height: 900px;
    aspect-ratio: 2/1;
    min-height: 40vh;
  }
  body .hero-wrapper .logo-wrapper {
    top: 50px;
    left: 60px;
    width: 60px;
    display: block;
  }
  body .hero-wrapper .hero-text {
    font-size: 64px;
    bottom: 48px;
  }
  body .coming-soon {
    font-size: 32px;
  }
  body .coming-soon nav ul li a:hover {
    border-bottom: 2px solid white;
  }
}/*# sourceMappingURL=style.css.map */