#hero {
  height: 400vh;
}

#background {
  height: 100vh;
  /*background: url("../../assets/img/background.webp") center / cover;*/
}

#content {
  height: 100vh;
  /*background: url("../../assets/img/text.webp") center / cover;*/
  /*display: flex !important;*/
  /*flex-direction: column;*/
  /*align-content: center;*/
  /*align-items: flex-start !important;*/
  /*justify-content: space-evenly !important;*/
  background-color: #000aff;
  width: 100vw;
  height: 100vh;
}

#mask {
  mask: url("../../assets/img/mask.svg") no-repeat center;
  mask-size: 5000%;
}

#overlay {
  background: #0000ff;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}

#logo-color {
  margin-bottom: 40px;
  margin-top: calc(50vh - 20vw);
}

#intro h1 {
  font-size: 60px;
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  /*background-image: radial-gradient(circle at 50% -30vh, #ff87e5 0, #fb6adb 50vh, #9d2f6a 90vh, rgba(46,31,66,0) 150vh);*/
  -webkit-background-clip: text;
  background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
}

@media (min-width: 768px) {
  #intro h1 {
    font-size: 98px;
  }
}

#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 576px) {
  #navigation {
    padding: 20px;
  }
}

