@import url("https://fonts.googleapis.com/css2?family=Allura&family=Open+Sans&display=swap");
@font-face {
  font-family: "w-font";
  src: url("/font/wanoquin-extrabold.otf");
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: auto;
}

h1 {
  font-family: "w-font", sans-serif;
}

main {
  height: auto;
  color: white;
  overflow: hidden;
  font-family: serif;
  /*   .section {
      width: 100%;
      height: 300vh;
      background-color: aqua;
  } */
}
main nav {
  width: 80%;
  height: 100px;
  margin-inline: auto;
  display: none;
}
main nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0;
}
main nav ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #847B7B;
  font-family: "Open Sans", sans-serif;
}
main nav ul li .logo {
  font-size: 40px;
  color: #FFFFFF;
  font-weight: bolder;
  text-transform: uppercase;
  font-family: "Allura", cursive;
}
main #container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  border: 1px solid #c00f0f;
}
main #container .container-wapp {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #FFFFFF, #847B7B);
  z-index: 1;
}
main #container .container-wapp h1 {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
  text-transform: capitalize;
}
main #container .container-main-bkg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/image/main-flower-bkg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main #container .container-second-bkg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/image/layout.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main #container .hero-text {
  width: 100%;
  height: calc(100vh - 100px);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: 2px;
}
main #container .hero-text h1 {
  margin: 0;
  padding-top: 5vh;
  text-shadow: 1px 1px 1px #FF0000, -1px -1px 1px #069906;
}
main #container .hero-text .hero-text-left {
  font-size: 8vw;
  padding-right: 20vw;
  color: whitesmoke;
}
main #container .hero-text .hero-text-right {
  font-size: 8vw;
  padding-left: 20vw;
  color: whitesmoke;
}
main #container .hero-text .hero-fadein-text {
  font-size: 8vw;
  display: none;
}
main #container .dot {
  width: 35px;
  height: 35px;
  position: absolute;
  background: url(https://i.ibb.co/859tBfh/rose-petal.png);
  background-size: 100% 100%;
  z-index: 100;
}/*# sourceMappingURL=main.css.map */