/* FUENTE POPPINS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
  display: flex;
  justify-content: center;     /* centro horizontal */
  align-items: center;         /* centro vertical */
  background: #000;
  color: #fff;
  padding: 1.2rem;
  text-align: center;
}

/* CONTENEDOR */
.container {
  width: 100%;
  max-width: 600px;           /* más pequeño */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.logo {
  width: 160px;               /* MÁS PEQUEÑO */
  max-width: 60%;
  height: auto;
  margin-bottom: 1.2rem;
}

/* CLAIM – móvil */
.claim {
  font-size: 18px;            /* MÁS PEQUEÑO */
  font-weight: 600;
  line-height: 1.25;
  max-width: 90%;
  margin-bottom: 0.8rem;
}

/* HASHTAGS – móvil */
.hastags {
  opacity: 0.55;
  font-size: 14px;            /* MÁS PEQUEÑO */
  font-weight: 300;
  line-height: 1.3;
  max-width: 90%;
  margin-top: 0.6rem;
}

/* HANDLE */
.handle {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 14px;            /* MÁS PEQUEÑO */
  font-weight: 400;
  text-decoration: none;
  color: #FACA00;
  transition: opacity .2s ease;
}

.handle:hover {
  opacity: 0.6;
}

/* ---- TABLET ---- */
@media (min-width: 768px) {

  .logo {
    width: 200px;
  }

  .claim {
    font-size: 24px;
  }

  .hastags {
    font-size: 18px;
  }

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

/* ---- ESCRITORIO GRANDE ---- */
@media (min-width: 1100px) {

  .logo {
    width: 260px;           /* mucho más discreto que antes */
  }

  .claim {
    font-size: 28px;        /* antes 40–42, ahora MUCHO más compacto */
  }

  .hastags {
    font-size: 20px;
  }

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