* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 5%;
    background: linear-gradient(45deg, rgba(255,175,189,.7), rgba(100,216,243,.7), rgba(234,236,198,.7), rgba(245,146,176,.7), rgba(52,219,216,.7)) 0 0 / 1000% no-repeat,  0 0 / cover no-repeat;
	-webkit-animation: gradientAnimation 40s ease infinite;
    overflow: hidden;
	animation: gradientAnimation 40s ease infinite;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero h1 {
    font-size: 4rem;
    color: #333;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #555;
  }
  
  .hero .btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .hero .btn:hover {
    background-color: #2980b9;
  }
  
  .hero-image {
    width: 50%;
    animation: slideIn 2s ease-in-out forwards;
    opacity: 0;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Animation */
  @keyframes slideIn {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }
  
    .hero-content {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .hero .btn {
      font-size: 1rem;
      padding: 8px 16px;
    }
  
    .hero-image {
      width: 80%;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 0.9rem;
    }
  
    .hero .btn {
      font-size: 0.9rem;
      padding: 6px 12px;
    }
  
    .hero-image {
      width: 90%;
    }
  }
  