/* css/styles.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: url('../images/background.jpg') center center no-repeat fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow: hidden;
}

.welcome-text {
  position: absolute;
  top: 5%;
  width: 100%;
  text-align: center;
  animation: floaty 6s infinite ease-in-out;
  z-index: 2;
}

.welcome-text h1 {
  margin: 0;
  font-size: 2rem;
}

.welcome-text p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

#thinkingDots {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

@media (max-width: 600px) {
  .welcome-text h1 {
    font-size: 1.5rem;
  }
  .welcome-text p {
    font-size: 0.9rem;
  }
}

