@charset "UTF-8";
/* Estilo de mi pagina principal */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
body img {
  width: 100%;
  height: 300px;
}

header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

div p {
  text-decoration: underline;
  font-size: x-large;
  text-align: center;
}
div p div p {
  text-align: center;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
}

section {
  padding: 2em;
  max-width: 90%;
  margin: 2em auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 0 10px rgba(0, 0, 0, 0.1);
}

.imagen-con-descripcion {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 20px;
}
.imagen-con-descripcion img {
  width: 200px;
  height: 200px;
  margin-right: 20px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  position: static;
  width: 100%;
  bottom: 0;
}

th,
td {
  border: none;
  padding: 30px; /* 15px */
  text-align: left;
  font-size: x-large;
  background-color: #333;
  color: #fff;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  background-color: #333;
}

.contenedor-imagenes {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.imagen-con-lista {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imagen-con-lista img {
  width: 250px;
  height: 250px;
  margin-bottom: 10px;
}
.imagen-con-lista ul {
  list-style: none;
  padding: 0;
}
.imagen-con-lista li {
  margin-bottom: 5px;
}

/* Para pantallas más pequeñas (móviles) */
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  /* Ajustar el tamaño del banner para móviles */
  body img {
    height: auto; /* Permitir que la altura se ajuste */
  }
  div p {
    font-size: large; /* Reducir el tamaño del texto */
  }
  .imagen-con-descripcion {
    flex-direction: column; /* Apilar imagen y texto */
    align-items: center; /* Centrar elementos */
    text-align: center; /* Centrar texto */
  }
  .imagen-con-descripcion img {
    width: 100%; /* Imagen ocupa todo el ancho */
    height: auto;
    margin-right: 0; /* Eliminar margen */
    margin-bottom: 10px; /* Agregar margen abajo */
  }
  th,
  td {
    font-size: medium; /* Reducir tamaño del texto */
    padding: 10px;
  }
  .contenedor-imagenes {
    flex-direction: column; /* Apilar las imágenes */
    align-items: center;
  }
  .imagen-con-lista img {
    width: 100%; /* Imagen ocupa todo el ancho */
    height: auto;
  }
}
/* Para pantallas medianas (tabletas) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  /* Ajustar el tamaño del banner para tabletas (opcional) */
  body img {
    height: auto;
  }
  .imagen-con-descripcion {
    font-size: 18px;
  }
  th,
  td {
    font-size: large;
    padding: 12px;
  }
}

/*# sourceMappingURL=main.css.map */
