.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.main-wave-wrapper {
    margin-bottom: -2px;
  }
  
.body{
    color: black;
}
.container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.left h1 {
    color: #FFD700;
    font-size: 10rem;
    line-height: 1;
    margin: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.right p {
    font-size: 1.8rem;
    margin: 0;
    max-width: 400px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.5s;
    color: white;

}


@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.animated-wave-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #064e3b;
  }
  svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
  }

  html {
    scroll-behavior: smooth;
  }


  .animated-wave-background svg {
    shape-rendering: geometricPrecision;
    display: block;
    width: 100vw;
    height: 120px; /* or a bit more depending on the wave */
  }


