body
{
    background-color: #ffd0e9;
}
.container
{
    height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.container > img
{
    max-width: 50%;
    max-height: calc(50dvh);
}

  
  header {
    background-color: #e30079; /* fondo de la navbar */
    color: white;
    width: 100%;
  }
  
  header > div
  {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  } */
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-logo img {
    height: 40px;
    width: auto;
  }
  
  #logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s;
  }
  
  nav li {
    text-align: center;
  }

  nav li:hover {
    text-align: center;
    background-color: #ff36a1;
    border-radius: 4px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    nav {
      
    }
  
    nav ul {
      flex-direction: column;
      display: none;
      margin-top: 1rem;
    }
  
    nav ul.show {
      display: flex;
    }
  
    nav li {
      text-align: center;
      }
  
  }
  