html * {
  box-sizing: border-box;
}
/* =================================Index =================================*/

/* --------------Hero ---------------*/
.hero {
  object-fit: contain;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: visible;
  background: linear-gradient(180deg, #ff69b4, #ffe1ec);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin: auto;
}

.hero h1 {
  font-size: 6rem;
  margin-top: 25vh;
  /*
  max-width: 100%;
  object-fit: contain;
  padding: 0;
  line-height: 0.8; */
  color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    3px 3px 0 #000;
}

.hero h2 {
  font-size: 5.5rem;
  /* padding: 0;
  margin: 0;
  max-width: 100%;
  object-fit: contain; */
  text-transform: small-caps;
  color: #fff;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    3px 3px 0 #000;
  /* margin-bottom: -35px; */
}

.hero p {
  /* max-width: 100%; */
  font-size: 1.5rem;
  /* overflow: visible;
  padding: 10px; */
  color: #c20064;
}

.introduction {
  width: 95%;
}

.svg-container {
  text-align: center;
  margin-top: 20px;
  /* Adjust the value as needed */
}

.size-6 {
  width: 30px;
  /* Adjust size as needed */
  height: 30px;
  /* Adjust size as needed */
}

.animated-svg {
  animation: gentle-float 1s infinite ease-in-out;
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
    /* Subtle rise and fall movement */
  }
}


/* Responsive adjustments */
@media screen and (max-width:600px) {
  main,aside {
    width: 100%
  }
     .hero h1 {
          font-size: 15vw;
     }
     .hero h2{
          font-size: 12vw;
     }
    }