*{
    padding: 0;
    margin: 0;
}
body{
  font-family: 'Poppins', sans-serif;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: black;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .logo img {
    max-height: 40px;
  }
  .menu{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 80px;
  }
  .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu li {
    margin: 10px;
  }

  .menu a {
    color: white;
    text-decoration: none;
  }

  #profile {
    max-height: 40px;
    border-radius: 50%;
  }
  /* Botón desplegable */
.dropdown-toggle {
    background-color: #0000;
    cursor: pointer;
  }

  /* Menú desplegable */
  .dropdown-menu {
    display: none;
    position: absolute;
    visibility: hidden  ;
    background-color: #000;
    border: 1px solid #ccc;
    z-index: 1;
  }

  .dropdown-menu li {
    list-style: none;
    margin: 5px ;
  }
  .dropdown-menu ul {
    width: 2px;
    height: 4px;
  }

  /* Mostrar el menú desplegable al hacer clic en el botón */
  .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
  }


  @media only screen and (max-device-width : 480px) {
    nav{
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .menu ul{
      display: flex;
      flex-direction: column;
      align-items: center;

    }
    #profile {
      max-width: 40px;
      border-radius: 50%;
    }

  }
