* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
}


header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: block;
}

.title h1 {
    font-size: 30px;
    text-align: center;
}

.right-icon .icon-img {
    width: 40px; /* Ajusta el tamaño de la imagen */
    height: 40px; /* Ajusta el tamaño de la imagen */
    object-fit: contain; /* Asegura que la imagen no se distorsione */
}

.dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #555;
}

.show {
    display: flex;
}

@media screen and (min-width: 600px) {
    .hamburger {
        display: none;
    }
    .dropdown-content {
        display: flex;
        position: static;
        flex-direction: row;
        justify-content: space-between; /* Distribuir uniformemente */
        width: 100%; /* Ocupar todo el ancho */
    }
    
    .dropdown-content a {
        flex-grow: 1;
        text-align: center; /* Centrar el texto de cada opción */
    }
   /* .dropdown-content {
        display: flex;
        position: static;
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
    }
    
    .navbar {
        justify-content: space-between;
    }*/
    
    .title {
        flex-grow: 1;
        text-align: center;
    }
}
