* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  font-family: "Times New Roman", serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Center container */
.container {
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

/* Title */
.title {
  font-size: 48px;
  letter-spacing: 2px;
}

/* Subtitle */
.subtitle {
  margin-top: 15px;
  font-size: 18px;
  opacity: 0.8;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }
}