/*ceci est le fichier CSS de ma page INDEX*/
header {
    background-color: orange;
    display: flex;
    justify-content: center;
    padding: 25px;
}

.senju {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    position: fixed;
    right: 20px;
    top: 5px;
}

#index {
    background-image: url(../img/image_background_index.jpg);
    background-size: 100%;
    padding: 12%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 90px;
}
body {
    background-color: rgb(0, 0, 0);
    margin: 0%;
    padding: 0px;
}
#conteneur{
    padding: 100px;
}
article{
    padding-top: 20px;
    padding-bottom: 55px;
    padding-left: 30px;
    padding-right: 20px;
}

a{
    color: white;
    font-size: 40px;
    text-decoration: none;
}

footer{
    background-color: orange;
}
img{
    width: 400px;
}
@media screen and (max-width: 1600px){
    #index{
        background-color: rgb(83, 55, 24);
        background-image: none;
    }
    #conteneur{
        overflow: hidden;
        width: 0px;
        padding: 0px;

    }
    main{
        flex-direction: column;
    }
    div{
       display: flex;
       flex-direction: row;
       justify-content: space-between;
       padding: 0px;
    }
}
