/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #007b80, #f25b3d);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.overlay {
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.main-image {
  width: 60%;
  max-width: 500px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.text {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.subtext {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
