/*Louis Berthold 13.01.2025*/

/*pour les images en fond*/
#image-D-home{
    z-index: -1;
    opacity: 0.8;
    height: 90vh;
    position: absolute;
    right: 0;
    bottom: 0;
}
#image-G-home{
    /*pour qu'elle sois en arierre plan*/
    z-index: -1;
    opacity: 0.8;
    height: 90vh;
    /*pour qu'elle reste à une position donnée*/
    position: absolute;
    left: 0;
    bottom: 0;
    /*pour retourner l'image*/
    transform: scaleX(-1);
}
table{
    margin-top: 15vh ;
}
tr{
    height: 5vh;
}
td{
    width: 13vw;
}

@media screen and (max-width: 880px) {
    #image-G-home{
        display: none;
    }
    #image-D-home{
        left: 50%;
        transform: translateX(-30%);
    }
    tr{
        height: auto;
    }
    td{
        width: auto;
        padding: 1%;
    }
    table{
        background: rgba(207, 255, 232, 0.849);
        width: 100%;
 
    }
}
/*pour le bouton about-me*/
.me{
    transition: all 0.5s;
    background-color: violet;
}
.me:hover{
 color: white;
 background-color: darkorchid;

}