@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

::selection {
  background-color: #C3CFE2;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  background: linear-gradient(to right, #FDFBFB, #EBEDEE 70%);
}

.text {
  text-transform: uppercase;
  text-align: center;

  background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: 'Poppins', sans-serif;

  /* 🔑 Magic line */
  font-size: clamp(3rem, 12vw, 10rem);
}
