
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    background: #000;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.content {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.content h2 {
    font-size: 5em;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    color: transparent;
    -webkit-text-stroke: 2px #8b4c24;
}

.content h2:nth-child(2) {
    color: #8b4c24;
    animation: animate 4s ease-in-out infinite;
    -webkit-text-stroke: 0;
}

@keyframes animate {
    0%, 100% {
        clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

#vanta-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.coming-soon {
    color: #8b4c24;
    font-size: 2em;
}

.dot {
    animation-name: dot;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    display: inline-block;
}

.dot:nth-child(1) {
    animation-delay: 0.5s;
}
.dot:nth-child(2) {
    animation-delay: 1s;
}
.dot:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes dot {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.btn-brown {
    background-color: #A0522D; /* light brown */
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
  
  .btn-brown:hover {
    background-color: #8B4513; /* darker on hover */
}
/* General Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #4e342e; /* Dark brown */
    overflow-x: hidden;
  }
  
  /* Header Text */
  .header-text {
    font-size: 5em;
    color: #8b4c24;
    text-align: center;
    margin-top: 100px;
    font-weight: 700;
  }
  
  .coming-soon {
    color: #a0522d;
    font-size: 1.8em;
    font-weight: 500;
  }
  
  .btn-brown {
    background-color: #a0522d;
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 0.6em 1.2em;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .btn-brown:hover {
    background-color: #8b4c24;
    color: #fff;
  }
  
  /* Background Image (if any) */
  .background-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url('omanballoons_transparent.png') no-repeat center center;
    background-size: cover;
    opacity: 0.25;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .header-text {
      font-size: 2.5em;
      margin-top: 60px;
    }
  
    .coming-soon {
      font-size: 1.4em;
    }
  
    .btn-brown {
      font-size: 0.95rem;
      padding: 0.5em 1em;
    }
  
    .background-img {
      opacity: 0.2;
      background-position: center top;
    }
  }
  
  @media (max-width: 480px) {
    .header-text {
      font-size: 2em;
      margin-top: 50px;
    }
  
    .coming-soon {
      font-size: 1.2em;
    }
  
    .btn-brown {
      font-size: 0.9rem;
      padding: 0.5em 0.9em;
    }
  }
