.headerEcran{
    display: none;
}

.headerMobile{
        display: flex;
        justify-content: center;
        align-items: center;
    }

.info{
    width: fit-content;
    height: fit-content;
    box-shadow: 5px 5px 5px var(--bleu-fonce);
    border-radius: 5px;
    text-align: left;
    padding: .5em;
}

.info p{
    line-height: .2em;
}

.info p:last-child{
    text-align: center;
    padding-top: .5em;
    margin-bottom: .1em;
}

.lien a:hover{
    color: var(--orange-fonce);
    transition: .3s;
}

.ombreBouton{
    box-shadow: 3px 3px 5px var(--bleu-fonce);
}

.texteCentrer{
    text-align: center;
}


@media (min-width: 768px){       
    .headerEcran{
        display: flex;
        justify-content: space-between;
    }

    .headerMobile{
        display: none;
    }
}