html, body {
    max-width: 100%;
    overflow-x: hidden; /* Esto oculta el desbordamiento horizontal */
}

/* footerMenu es una barra de menú inferior como la de los móviles, fija abajo de la pantalla */
#footerMenu {
    /* width: 100%;
    max-width: 100vw;
    overflow-x: hidden; */
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}
#footerMenu > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Hacemos que la lista no tenga los bullet points, que esté en horizontal y bien espaciada */
#footerMenu > div > ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

#headerMenu {
    /* width: 100%;
    max-width: 100vw;
    overflow-x: hidden; */
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}
#headerMenu > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Hacemos que la lista no tenga los bullet points, que esté en horizontal y bien espaciada */
#headerMenu > div > ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

#skeletonMenu {
    height: 70px;
    width: 100%;
}

#footerMenu .nav-link, #headerMenu .nav-link{
    color: var(--bs-primary-subtle) !important;
    border-bottom: none;
    letter-spacing: 1px;
    font-size: 1.25rem;
}
#footerMenu .nav-link.active, #headerMenu .nav-link.active{
    border-bottom: 2px solid var(--bs-primary-subtle) !important;
    padding-bottom: 2px;
}