@import url('https://fonts.googleapis.com/css?family=Maitree&display=swap');
@import url('https://fonts.googleapis.com/css?family=Scada&display=swap');

body {
    background-color: #1A0023;
    font-family: 'Maitree';
    color: white;
}

h1 {
    font-family: 'Scada';
    font-size: 5em;
    text-align: center;
    margin: 20px 0 50px 0;
}


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

.lienCross {
    position: sticky;
    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;
}

#cv {
    display: block;
    width: 50%;
    margin: 100px auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 3px rgb(93, 87, 120);
}

i {
    position: absolute;
    right: 20%;
    top: 290px;
    transition: scale 00ms ease-in-out;
}

i:hover {
    scale: 1.2;
}

a {
    color: white;
}



@media screen and (max-width: 1000px) {
    i {
        right: 15%;
    }

    .lienCross {
        margin: 40px 0 0 10px;
    }

}