html body {
    margin: 0;
    padding: 0;
    /* quita los marquenes para que los elementos ocupen todo el tamaño de la página */
}
.cabecera {
    background-color: black;
    padding-left: 4px;
    display: flex;
    height: 5vh;
}
.logo {
    display: flex;
    width: 100%;
    align-items: center;
}
.logo-img {
    height: 3vh;
    width: 3vh;
}
.logo-all {
    color: rgb(255, 255, 255);
    margin-right: 0;
    text-size-adjust: 10px;
}
.logo-shoes {
    color: orange;
    margin-left: 0;
    text-size-adjust: 10px;
}
.menu, a {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    /* ajusta el estilo del menu */
}
.menu a:hover {
    border: 5px solid rgb(255, 230, 0);
    background-color: rgb(255, 230, 0);
    color: black;
 }
@media (max-width: 600px) {
.menu a {
    font-size: 12px;
}
.cabecera {
    flex-direction: column;
    height: auto;
    justify-content: center; 
    align-items: center;
}
.logo {
    flex-direction: r;
}
}