/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   

body {
  background-color: #000000;
  font-family: Curely;
  color: white;
}

.header-img {
  display: block;
  margin: 0 auto;
  width: 50%;        /* ancho completo */
  height: 100px;      /* el tamaño que quieras */
  object-fit: contain; /* NO recorta */
  background-color: black; /* opcional para rellenar barras */
}

.titulo-principal {
  font-family: Kiss me;   /* o la fuente que uses */
  font-size: 5rem;
  text-align: center;    /* <-- ESTO lo centra */
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: white;
  display: block;        /* asegura que se comporte como elemento de bloque */
  width: 100%;           /* ocupa todo el ancho para poder centrarse */
}

@font-face {
  font-family: "Kiss me";
  src: url("fonts/KISSMKMK.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}


.caja {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #111;
  border-radius: 10px;
  border: 2px solid #444;
}

.caja-texto {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
    text-align: center;
}