/* 
    Auteur: Nicolas Raemy
    Description : La premiere page de mon projet
    Date : Le 12.01.2024 
*/
 /*positionement et grandeur de l'image */   
 img{
    position: fixed;
    right: 50px;
    bottom: 150px;
    width: 500px;
    
 }
 /*image de font et couleur du texte */ 
body{
    background-image:url("../image/Draft.jpg") ; 
    background-size: cover;
    color: white;
} 

.conference{
    width: 50%;
    align-items: start;
} 

h2{
    color: white; 
    display: flex; 
    flex-direction: row;  
    justify-content: space-around;
}

a{
    color: white;
    text-decoration: none;
    margin-top: 2%;
    margin-bottom: 5%;
    border: 1px;
    border-style: hidden;
    background-color: black;
}

a:hover{
    color: black;
    background-color: white;
}

h1{
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 600px) {
    body {
        background-image: none;
        color: black;
    }

    img {
        position: static; 
        width: 100%; 
        margin-top: 10px; 
    }

    .conference {
        width: 100%; 
        align-items: center; 
    }

    h2 {
        display: flex;
        flex-direction: column; 
        margin: 0;

    }
}
