/* Mobile — default (small screens) */
/* No media query needed */

body {
  font-family: system-ui, serif;
  margin: 0;
  background: #f2f2f2;
}

main {
  max-width: 90%;
  margin: 1.5rem auto;
  padding: 1.5rem;
  line-height: 1.6;
  color: #111;
  background:#ffffff;
  border-radius: 8px;
  text-align: center;
}


/* Separación entre secciones */
h2, h3 {
  margin-top: 2rem;
}

/* Listas más respirables */
ul {
  margin-top: .5rem;
  padding-left: 1.2rem;
  list-style-type: none;
}

/* Párrafos más cómodos */
p {
  margin-top: 1rem;
}

/* Botón simple pero visible */
button {
  margin-top: 1rem;
  padding: .5rem 1rem;
  font-size: 1rem;
  border: 1px solid #444;
  background: #f4f4f4;
  cursor: pointer;
}

button:hover {
  background: #e8e8e8;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1.5rem 0;
}

div {
  display: block;
  position: relative;
}

/* Tablet */
@media (min-width: 600px) {
  main{
    max-width: 600px;
  }
}

/* Desktop */
@media (min-width: 900px) {
  main{
    max-width: 750px;
  }
}
