/* Reset default styles */
  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: url('402107330_WHITE_WAVES_1080.png');
    background-size: cover;
  }

  .popup {
    display: none;
    position: absolute;
    align-self: center;
    z-index: 1000;
  }

  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
  }

  .logo {
    position: absolute;
    align-self: center;
    top: -890px;
    transform: scale(0.09);
  }

  .tagline {
    position: absolute;
    align-self: center;
    top: 32%;
  }

  .subtitle {
    position: absolute;
    align-self: center;
    top: 48%
  }

  .webparagraph {
    align-self: center;
    position: absolute;
    top: 75%;
  }

  .mobileparagraph {
    display: none;
    align-self: center;
    position: absolute;
  }

  .get-yap {
    position: absolute;
    align-self: center;
    top: 60%;
    width: 380px;
    height: 44px;
    cursor: pointer;
    border: #3f3f3f;
    border-style: solid;
    border-width: 2px;
    background: #3f3f3f;
    color: #f6f6f6;
    border-radius: 1.5rem;
    font-size: 0.9rem;
  }

  .close-popup {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
}

  .join-waitlist {
    position: absolute;
    top: 27px;
    right: 10%;
    width: 132px;
    height: 40px;
    cursor: pointer;
    border: #3f3f3f;
    border-style: solid;
    border-width: 2px;
    background: #3f3f3f;
    color: #f6f6f6;
    border-radius: 1.5rem;
    font-size: 0.8rem;
  }

  .join-waitlist:active {
    background: transparent;
    color: #3f3f3f;
  }

  
  /* Responsive Design */
  @media screen and (-webkit-min-device-pixel-ratio: 1) and (max-width: 430px) {
    body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      display: flex;
      flex-direction: column;
      background-image: url('Untitled\ design-16.png');
      max-height: fit-content;
    }
    .logo {
      transform: scale(0.07);
    }
    .tagline {
      transform: scale(0.49);
      top: 30%
    }
    .popup {
      width: auto;
      height: auto;
      top: 40px;
      left: 5%;
      right: 5%;
    }
    .subtitle {
      top: 45%;
      transform: scale(0.8)
    }
    .get-yap {
      top: 60%;
      width: 80%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1rem;
    }
    .join-waitlist {
      right: 6%
    }

    .webparagraph {
      display: none;
    }

    .mobileparagraph {
      top: 70%;
      transform: scale(0.8);
      display: block;
      align-self: center;
      position: absolute;
    }
  }
