/* 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." */

html, body {
  margin: 0;
  height: 100%;
}

/* FONDO GENERAL */
body {
  /* Color base */
  background-color: #0b132b;

  /* MÚLTIPLES GIFS COMO FONDO */
  background-image:
    url("https://faerie-land.neocities.org/cosasjeje/4.gif"),
    url("https://faerie-land.neocities.org/cosasjeje/4.gif");

  background-repeat:
    repeat,
    repeat;

  background-size:
    120px 120px,
    300px 300px;

  background-position:
    top left,
    center;

  color: white;
  font-family: sans-serif;
}

/* CAPA PARA QUE EL TEXTO SEA LEGIBLE */
.overlay {
  min-height: 100vh;
  padding: 4rem;

  background: rgba(0, 0, 0, 0.6); /* oscurece sin tapar el fondo */
  
  /* opcional pero elegante */
  backdrop-filter: blur(3px);
}

