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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  color: #24332c;

  background:
    radial-gradient(circle at top, #ffffff 0%, #f8f5ee 45%, #eee8dc 100%);
}

.container {
  width: 100%;
  max-width: 650px;
  padding: 60px 40px;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(36, 51, 44, 0.12);
  border-radius: 28px;

  box-shadow: 0 20px 60px rgba(36, 51, 44, 0.08);
  backdrop-filter: blur(10px);
}

.ring {
  font-size: 3.5rem;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #657168;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 45px 24px;
    border-radius: 22px;
  }

  .ring {
    font-size: 3rem;
  }

  p {
    font-size: 1rem;
  }
}
