body {
    background-color: black;
}

img {
    margin-top: 150px;
    width: 100%;
}

.lienCross {
    display: block;
    margin: 40px 0 0 50px;
    width: 30px;
    height: 26px;
}

.lienCross {
    position: absolute;
    top: 50px;
}

.cross {
    position: relative;
    width:30px;
    height: 30px;
    z-index: 9;
}

.traitCross{
    position: absolute;
    width:100%;
    height: 3px;
    top: 14px;
    background-color: rgb(255, 255, 255);
}

#traitCross1 {
    rotate: 45deg;
    transition: all 0.3s ease-in-out;
}

.cross:hover #traitCross1 {
    rotate:-45deg;
    scale : .5;
}

#traitCross2 {    
    rotate : -45deg;
    transition: scale 0.1s ease-in-out;
}

.cross:hover #traitCross2 {
    scale :0.5;
}

@media screen and (max-width: 1020px) {
    .lienCross {
        margin: 40px 0 0 10px;
    }
}