/* On regle le titre de l'album */
.titreAlb {
    color: var(--color-primary);
    margin-left: 20px;
}

/* On affiche pour les smartphone et les tablettes les smarthone */
@media screen and (max-width: 991.98px) {
    .tacktils {
        display: block;
    }

    .tacktils a {
        font-size: 16px !important;
        color: black !important;
        font-weight: bold !important;
    }

    .aligUrl {
        display: flex;
        flex-flow: row wrap;
        gap: 10px;
        align-items: center;
    }

    /* On regle la hauteur du main */
    .fixes {
        display: none;
    }

    .menu-photo {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
    }

    .menu-photo a:hover {
        color: var(--color-secondary) !important;
    }

    .smart-li {
        font-weight: normal;
    }
}

/* On raffiche pour les pc */
@media screen and (min-width: 992px) {
    .tacktils {
        display: none;
    }

    /* On regle la hauteur du main */
    .fixes {
        display: block;
    }
}