* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100vh;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10vh;
  width: 80%;
  margin-inline: auto;
  padding: 10px 0;
}

.header .header-title {
  color: #ab815d;
  font-family: "cursive";
  font-size: 2.8rem;
}

@media (min-width: 500px) and (max-width: 899px) {
  .header .header-title {
    font-size: 2rem;
  }
}

@media (min-width: 100px) and (max-width: 499px) {
  .header .header-title {
    font-size: 1.5rem;
  }
}

.header .sns img {
  width: 36px;
  height: 36px;
  margin-left: 10px;
  border-radius: 5px;
}

@media (min-width: 100px) and (max-width: 499px) {
  .header .sns img {
    width: 20px;
    height: 20px;
  }
}

.main {
  width: 100%;
  height: 80vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 100px) and (max-width: 899px) {
  .main {
    height: 100vh;
  }
}

.main .hero {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  z-index: 1000;
}

.main .hero .text-wrapper {
  position: absolute;
  top: 45%;
  left: 3%;
  color: #ab815d;
  font-size: 5rem;
  font-weight: bold;
  mix-blend-mode: multiply;
  overflow: hidden;
  z-index: 100;
}

@media (min-width: 990px) and (max-width: 1300px) {
  .main .hero .text-wrapper {
    font-size: 4rem;
  }
}

@media (min-width: 580px) and (max-width: 989px) {
  .main .hero .text-wrapper {
    font-size: 2.6rem;
    top: 40%;
  }
}

@media (min-width: 494px) and (max-width: 579px) {
  .main .hero .text-wrapper {
    font-size: 2rem;
    top: 40%;
  }
}

@media (min-width: 100px) and (max-width: 493px) {
  .main .hero .text-wrapper {
    font-size: 1.3rem;
    top: 40%;
  }
}

.main .hero .text-wrapper .letters {
  display: inline-block;
}

.main .hero img {
  width: 100%;
  height: 73vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 -50px;
  object-position: 0 -165px;
  margin-top: 50px;
}

@media (min-width: 900px) and (max-width: 1300px) {
  .main .hero img {
    -o-object-position: 0 -70px;
       object-position: 0 -70px;
  }
}

@media (min-width: 100px) and (max-width: 899px) {
  .main .hero img {
    height: 75vh;
    -o-object-position: top;
       object-position: top;
  }
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  z-index: -1;
}
/*# sourceMappingURL=style.css.map */