/* IMPORTA SOLO LA FUENTE QUE VAS A USAR */
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');

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

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Momo Trust Display", system-ui, sans-serif;
  display: flex;
  justify-content: center;  /* centramos horizontal */
  align-items: flex-start;  /* empezamos arriba para móvil */
  background: linear-gradient(135deg, #f3b015 0%, #f39b29 30%, #f0567b 70%, #e32986 100%);
  color: #000;
  padding: 1.5rem;
}

/* CONTENEDOR */
.container {
  width: 100%;
  max-width: 720px;     /* limita el ancho en escritorio */
  text-align: left;
}

/* LOGO */
.logo {
  width: 260px;         /* tamaño base para móvil */
  height: auto;
  margin-bottom: 1.5rem;
}

/* CLAIM – base para móvil */
.claim {
  font-size: 22px;
  font-weight: 300;
  max-width: 100%;
  line-height: 1.25;
}

.claim p + p {
  margin-top: 0.4rem;
}

/* HANDLE */
.handle {
  display: inline-block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: black;
}

.handle:hover {
  opacity: 0.6;
}

/* ---- A PARTIR DE TABLET / ESCRITORIO ---- */
@media (min-width: 768px) {

  body {
    padding: 2rem 3rem;
    align-items: center;    /* ahora sí, centrado vertical en grande */
  }

  .logo {
    width: 420px;
    margin-bottom: 2.2rem;
  }

  .claim {
    font-size: 38px;
    max-width: 655px;
    line-height: 1.28;
  }

  .handle {
    margin-top: 50px;
    font-size: 24px;
  }
}

/* PANTALLAS GRANDES */
@media (min-width: 1100px) {
  body {
    padding: 2rem 4rem;
  }

  .logo {
    width: 480px;
  }

  .claim {
    font-size: 43px;
  }

  .handle {
    font-size: 28px;
  }
}
