/* --- Cargar tu tipografía descargada --- */
/* Cambia "MiFuente.ttf" por el nombre EXACTO de tu archivo */
/* --- Fondo de la página --- */
body {
  margin: 0;
  background-image: url("Fondo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
@font-face { font-family: "MiFuente"; src: url("letra.ttf") format("truetype"); }
/* --- Título centrado arriba --- */
.titulo {
  font-family: "MiFuente", sans-serif;
  font-size: 90px;
  text-align: center;
  margin-top: 30px;
  color: white;
  font-weight: normal;
  animation: aparecer 2s ease-in-out;
}

/* Animación aparecer */
@keyframes aparecer {
  from { opacity: 0; }
  to { opacity: 1; }
}

  
.rectangulo {
  position: absolute;
  left: 1cm;
  top: 150px;
  
  width: 400px;
  height: 250px;

  border-radius: 10px;
  font-size: 24px;
  color: black;
  background: white; /* para que se vea */
  padding: 20px;
}

/* ESTA ES PARA TUS IMÁGENES */
.imagen {
  width: 300px;        /* Ajusta el tamaño */
  display: block;      /* Para centrar con margin */
  margin: 20px auto;   /* Centrada */
}













