/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  /* Container Styling */
  .container {
      max-width: 600px;
      padding: 30px 20px;
      background-color: #1a1a1a;
      color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 0;
  }

  /* Animated border effect */
  .container::before {
      content: "";
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      border-radius: 12px;
      background: linear-gradient(45deg, #ff416c, #ff4b2b, #ff7300, #38ef7d, #00c3ff, #ff416c);
      background-size: 300% 300%;
      z-index: -1;
      animation: borderAnimation 3s linear infinite;
  }

  /* Mask the gradient to show only the border */
  .container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 10px;
      background-color: #1a1a1a;
      z-index: -1;
  }

  @keyframes borderAnimation {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }
  
  /* Heading Styling */
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  /* Paragraph Styling */
  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #999;
  }
  figure{margin-bottom: 15px;}
  img{
    max-width: 100%;
  }
  
  /* Footer Styling */
  .footer {
    font-size: 0.9rem;
    color: #fff;
  }
  
  .footer a {
    color: #00CCFF;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }

  .rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: rgba(173, 216, 230, 0.8);
    opacity: 0.7;
    animation: fall linear infinite;
}

@keyframes fall {
    from {
        transform: translateY(-100vh);
    }
    to {
        transform: translateY(100vh);
    }
}
@media all and ( max-width: 767px ){
  .container{
    max-width: 90%;
  }
  p:last-child{
    margin-bottom: 0;
  }
}
  