@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Oswald:wght@200..700&display=swap");

body {
  margin: 0;
  background: #000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
}

.container {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.signature {
  font-family: "Great Vibes", cursive;
  font-size: 15vw;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 2px;
  opacity: 0.15;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  filter: blur(0.5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.slogan {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 1;
  margin-top: 0;
}

@media (max-width: 600px) {
  .container {
    padding: 0 5vw;
  }

  .slogan {
    font-size: clamp(1rem, 6vw, 1rem);
  }
}
