body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-image: url("mundi2.jpg"); 
    color: #faf0f0; 
    font-size: 18px;
  }
  p {
    margin-top: 10px;
    margin-bottom: 16px;
    text-align: justify;
  }
 

  h2 {
    margin-bottom: 6px;

  }


  /* Encabezado principal con fondo de Wall-E */
  .inicio {
    background-image: url('Wall-E.jpg'); 
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
  }
  @font-face {
    font-family: 'Disney';
    src: url('fuentes/Waltograph42.ttf') format('truetype');
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay h1 {
    color: rgba(133, 247, 255, 0.836);
    font-size: 3rem;
    text-align: left;
    padding: 2rem;
  }
  
  /* Menú de navegación */
  nav {
    background-color: #69fa70;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: 1rem;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    display: inline;
    margin: 0 1rem;
  }
  
  nav a {
    color: rgba(128, 68, 0, 0.699);
    text-decoration: none;
    font-weight: bold;
  }
  
  main {
    padding: 2rem;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  footer {
    background-color: #2e7d32 rgb(110, 233, 140);
    color: rgb(110, 233, 140);
    text-align: center;
    padding: 1rem;
  }
  
  h1 {
    font-family: 'Disney', cursive;
    font-size: 3em;
    color: #ecca06; 
    text-shadow: 2px 2px 5px #f7df0650;
  }
  /* Animación de entrada */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  section {
    animation: fadeInUp 0.8s ease-out;
  }
  .inspiracion-contenido {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap; /* para que se ajuste en pantallas pequeñas */
}

.columna-diseño {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: 400px;
}

.columna-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: justify;
}

