body{
    margin: 0 auto;
    overflow-x: hidden;
    font-family: Fira;
}
a{
    color: unset;
    text-decoration: none;
}

#wrapright{
position: relative;
top: 0;
margin-left: 50vw;
color: blue;
width: calc(50vw - 3vh);
padding-bottom: 7vh;

}

.annonce{
    margin-top: 7vh;
    display: block;
    border-bottom: 5px blue dotted;
}

.annonce:last-of-type{
    border-bottom: 0px blue dotted;
}

.annonce:first-of-type{
    margin-top: 3vh;
}

.anName{
    display: block;
    text-align: center;
    background-color: blue;
    font-size: 5vh;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    padding: 5vh 7vw;
}

.anDesc{
    display: block;
    width: 35vw;
    margin-bottom: 7vh;
}

.anDesc p{
    font-size: 1.1em;
}

@media all and (max-width: 1050px){

    .mobile{
        display: contents;
    }

    .desktop{
        display: none;
    }

    #wrapright{
        position: relative;
        top: 22vh;
        margin: 0 5vw;
        padding-bottom: 3vh;
        width: 90vw;
        }

        .anDesc{
            display: block;
            width: 75vw;
            margin-bottom: 3vh;
        }

        .anDesc h1{
            font-size: 2vh;
        }

        .anDesc p{
            font-size: 1.5vh;
            margin: 2vh 0;
        }

        .anName{
            margin-bottom: 3vh;
        }

        .annonce{
            border-bottom: none;
        }
        


    }