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

body {
  height: 100vh;
  font-family: "Adele Mono", monospace;
  background: radial-gradient(circle at 20% 20%, #1b2b50, #0f2027),
              radial-gradient(circle at 80% 80%, #203a43, #0f2027),
              linear-gradient(135deg, #142c4c 0%, #0d1b2a 100%);
  background-size: 200% 200%;
  animation: oceanFlow 20s ease-in-out infinite;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #e0f7fa;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 600px;
}

.logo {
  max-width: 600px;
  margin-bottom: 40px;
}

h1 {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  font-size: 0.8rem;
  line-height: 1.6;
}

@keyframes oceanFlow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
