/*Louis Berthold 13.01.2025*/
#mail{
    font-family: 'Courier New', Courier, monospace;
}
main{
       width: 80vw;
}
/*pour correctement les aligner*/
main div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 70%;
    height: 50%;
}
/*pour avoir de l'espace entre deux*/
main div a {
    height: 100%;
    width: 40%;
}
/*pour prendre tout la place du <a>*/
 img{
    height: 100%;
    width: 100%;
    border-radius: 12px;
 }
 /*pour animer un peut les images quand on vas dessu*/
 img:hover{
   border-radius: 30px ;
 }
@media screen and (min-width: 850px) {
    main{
        width: 800px;
    }
}
@media screen and (max-width: 650px) {
   main div{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    }
    img{
        margin: 2%;
        width: 60%;
    }
    main{
       width: 70vw;
    }
}
    
