* {
  font-family: "Noto Sans Lydian", sans-serif;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-y: hidden;
  height: 100%;
}

p {
  margin: 0;
}

.firebg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -5;
}

.color-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #773838;
  opacity: 0.7;
  z-index: -4;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  margin-top: 15vh;
}

.logo {
  width: 600px;
  height: 600px;
  z-index: 0;
}

.arrow {
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 0;
}
.arrow path {
  fill: #efe4e4;
}

.small-logo {
  width: 200px;
  height: 200px;
}

.hide-bg {
  position: relative;
  top: 100px;
  left: 0px;
  width: 10px;
  height: 10px;
}

.hide + .color-overlay {
  opacity: 1;
  transition: all 0.5s;
}

.show + .color-overlay {
  opacity: 0.7;
  transition: all 0.5s;
}

.content {
  margin-top: 300px;
  color: #efe4e4;
}

.contact {
  padding-left: 40px;
}

.column-flex {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.desc {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 50px;
  min-width: 500px;
}

.info-flex {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

footer {
  padding-block: 20px;
  padding-left: 40px;
  width: 100%;
  margin-top: 120px;
  background-color: #541a1a;
}
footer .producer {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
footer .producer p {
  font-size: 20px;
}

.arrow {
  animation-name: updown;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

@keyframes updown {
  from {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 16px);
  }
  to {
    transform: translate(0px, 0px);
  }
}
@media (max-width: 900px) {
  .small-logo {
    display: none;
  }
  .logo {
    width: 300px;
    height: 300px;
  }
  .intro-content {
    margin-top: 30vh;
  }
  .desc {
    min-width: 0px;
  }
}/*# sourceMappingURL=style.css.map */