@font-face {
  font-family: "Avenir";
  src: url("./assets/Avenir Regular.woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Avenir";
}

::-webkit-scrollbar {
  display: none;
}

#intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
#intro svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#intro .kosha {
  height: clamp(1.5625rem, -0.2232rem + 2.7902vw, 3.125rem);
}
.logo_div {
  background: radial-gradient(#771324, #510000);
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo_div .logo {
  position: absolute;
  height: 80vh;
  width: 80vh;
  animation: rotate 100s linear infinite;
  left: 50%;
  top: 50%;
}
.logo_div .logo path {
  opacity: 0;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.launch {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch h1 {
  color: white;
  font-size: clamp(2rem, -2.8571rem + 7.5893vw, 6.25rem);
}/*# sourceMappingURL=style.css.map */