* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-family: "Montserrat Alternates", serif;
}

header {
  background: #fff7f6cc;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
}
.nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1200px;
}
/* Style for the Logo */
.logo img {
  width: 70px;
}

/* Styles for the Nav Bar */
.nav1 {
  gap: 60px;
}
ul {
  display: flex;
  list-style-type: none;
}
li a {
  text-decoration: none;
  color: black;
}

span {
  color: #fee148;
}
#span {
  color: #9f34a3;
}

/* for the mobile Hamburger menu NOTE: only for Mobile view this code works*/
.none {
  display: none;
}
#menu-toggle {
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-icon {
  font-size: 22px;
  cursor: pointer;
}
.menu-icon .fa-bars {
  display: block;
}
.menu-icon .fa-times {
  display: none;
}
#menu-toggle:checked + .menu-icon .fa-bars {
  display: none;
}
#menu-toggle:checked + .menu-icon .fa-times {
  display: block;
}
/* Navigation Menu for the Hamburger */
.nav-links {
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
  padding: 10px 0;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
main {
  margin-top: 72px;
}
/* for the arrows */
.v-3 {
  position: absolute;
  top: 50px;
  left: 210px;
  width: 200px;
}
.v-4 {
  position: absolute;
  right: 170px;
  top: 300px;
  width: 200px;
}
/* end of designs for the arrows */

/* Style for See me Looking all Cute Section */
.sec-1 {
  position: relative;
  overflow: hidden;
}
.centerMe {
  text-align: center;
  width: 800px;
  margin: auto;
  line-height: 30px;
  font-size: 24px;
  margin-top: 100px;
  margin-bottom: 80px;
}
/* Styles for the MoveUpDown Rectangles */
.container1 {
  position: relative;
  width: 100%;
  left: 250px;
  top: 80px;
}
.container2 {
  position: absolute;
  right: 210px;
  top: 260px;
}
.rectangle {
  height: 10px;
  width: 35px;
  display: inline-block;
  margin: 3px;
  animation: moveUpDown 2s ease-in-out infinite;
}

.yellow {
  background-color: yellow;
  animation-delay: 0s;
  /* left: 400px; */
}
.purple {
  background-color: purple;
  animation-delay: 0.5s;
  /* left: 450px; */
}
.red {
  background-color: red;
  animation-delay: 1s;
  /* left: 500px; */
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

/* Styles for the Oval and Rounded container */
.rounded-container {
  background: linear-gradient(
    151.39deg,
    rgba(254, 225, 72, 0.8) 0%,
    rgba(159, 52, 163, 0.8) 100%
  );
  width: 500px;
  height: 550px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  left: -280px;
  top: 108px;
  filter: blur(30px);
  z-index: -2;
}

.oval-container {
  background: linear-gradient(
    151.39deg,
    rgba(254, 225, 72, 0.8) 0%,
    rgba(159, 52, 163, 0.8) 100%
  );
  width: 385px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: -210px;
  z-index: -1;
  filter: blur(30px);
  transform: rotate(60deg);
}
.oval-container1 {
  background: linear-gradient(
    151.39deg,
    rgba(254, 225, 72, 0.8) 0%,
    rgba(159, 52, 163, 0.8) 100%
  );
  width: 385px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: -210px;
  z-index: -1;
  filter: blur(30px);
  transform: rotate(60deg);
}

/* Section Two for the Gallery */
.sec-2 {
  display: grid;
  max-width: 1400px;
  place-items: center;
}
.sec-2 img {
  border: 5px solid #d0b0cf;
  border-radius: 30px;
  margin: 5px;
  object-fit: cover;
}

.sec-2-1 {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  place-items: center;
}

.sec-2-1 img {
  border: 5px solid #d0b0cf;
  border-radius: 30px;
  margin: 5px;
  object-fit: cover;
}
.sec-2-1-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100px;
  margin-left: 200px;
  gap: 20px;
  place-items: center;
}

.sec-2-1-1 img {
  border: 5px solid #d0b0cf;
  border-radius: 30px;
  object-fit: cover;
}

/* Section 3 For Flower and Ruler */
.sec-3 {
  position: relative;
  top: -57px;
  height: 240px;
  overflow: hidden;
}
.sec-3-img1 {
  position: absolute;
  border: none;
  left: -86px;
  width: 155px;
  transform: translateY(-0%) rotate(-230deg);
}
/* Style for the Ruler */
.ruler {
  position: absolute;
  top: 145px;
  width: 100%;
  height: 6px;
  background-color: black;
  z-index: -1;
}
.sec-3-img2 {
  position: absolute;
  border: none;
  right: -86px;
  width: 155px;
  transform: translateY(-0%) rotate(230deg);
}

/* Section 4: Last */
.sec-4 {
  display: flex;
  max-width: 1200px;
  margin: auto;
  margin-top: -120px;
}
.img-4 {
  width: 400px;
  height: 309px;
  border-radius: 60px;
}
.sec-4-txt {
  font-family: Montserrat Alternates;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0%;
  text-align: justify;
  margin-top: 60px;
  margin-left: 60px;
}

.btn-1 {
  width: 200px;
  height: 40px;
  margin-top: 30px;
  color: white;
  background-color: black;
  border: none;
  border-radius: 20px;
  text-align: center;
}
/* Scroll to top button */
.btn-4 {
  width: 50px;
  height: 45px;
  color: white;
  background-color: black;
  border: none;
  border-radius: 100%;
  text-align: center;
  float: right;
  padding: 10px;
  margin-right: 10px;
}
.btn-4:hover {
  color: white;
  background-color: black;
  cursor: pointer;
}

/* Footer */
footer {
  display: flex;
  height: 50px;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: black;
  margin-top: 50px;
}
@media screen and (max-width: 650px) {
  body {
    max-width: 1200px;
  }
  .nav1,
  .sec-2,
  .v-3,
  .v-4 {
    display: none;
  }

  .logo {
    position: relative;
    right: 2px;
  }
  #logo {
    margin-left: 30px;
  }
  .none {
    display: inline;
  }
  .centerMe {
    width: 330px;
    font-size: 18px;
    margin-top: 30px;
  }

  .container1 {
    top: 5px;
    left: 20px;
  }
  .container2 {
    right: 20px;
    top: 320px;
  }

  .sec-2 {
    display: block;
    /* width: 300px; */
  }
  .sec-2 img {
    display: block;
    width: 285px;
  }
  .sec-2-1 {
    display: block;
    /* width: 300px; */
  }
  .sec-2-1 img {
    display: block;
    width: 275px;
  }
  .sec-2-1-1 {
    display: none;
    width: 300px;
  }

  .sec-4 {
    display: block;
    text-align: center;
  }
  .sec-4-txt {
    width: 400px;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
  }
  .img-4 {
    width: 310px;
  }

  /* For the Hamburger */
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #0a0a0a;
    flex-direction: column;
    display: none;
    text-align: center;
    height: auto;
  }

  .nav-links li {
    margin: 15px 0;
  }
  .nav-links li a {
    color: white;
  }

  #menu-toggle:checked ~ .nav-links {
    display: block;
  }
}

@media (min-width: 651px) and (max-width: 994px) {
  .centerMe {
    font-size: 20px;
    width: 700px;
  }
  .sec-2 {
    margin-left: 100px;
  }
  .sec-2-1 {
    margin-left: 100px;
  }
  .sec-2-1-1 {
    display: none;
  }
  .sec-4 {
    display: block;
    text-align: center;
  }
  .sec-4-txt {
    display: block;
    text-align: center;
  }
}
