
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  body {
    background-color: #000;
    color: #faf7e5;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  

  .container {
    z-index: 2;
  }

  h1 {
    font-size: 3rem;
    color: #faf7e5;
    margin-bottom: 1rem;
  }
  
  .highlight {
    color: #ef3e7a;
  }
  

  .tagline {
    font-size: 1.2rem;
    color: #d2f27a;
    margin-bottom: 2rem;
  }
  
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  

  .container {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
  }

  .shape {
    animation: float 4s ease-in-out infinite;
  }
  


  .join-btn {
    background-color: #ffe600;
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .join-btn:hover {
    transform: scale(1.1);
    background-color: #fff35c;
  }
  

  .shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  
  .shape {
    position: absolute;
    opacity: 0.6;
    border-radius: 50%;
  }
  
  .shape-pink {
    width: 120px;
    height: 120px;
    background-color: #ef3e7a;
    top: 10%;
    left: 5%;
  }
  
  .shape-yellow {
    width: 100px;
    height: 100px;
    background-color: #ffe600;
    bottom: 15%;
    right: 10%;
  }
  
  .shape-blue {
    width: 80px;
    height: 80px;
    background-color: #7ee5f5;
    top: 40%;
    left: 70%;
  }
  