CSS
/* Classes (sauf head)*/
.a-black {
    color: black;
    padding: 2px 8px;
    background-image: linear-gradient(120deg, #adb4c4 0%, #32353b 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.08em;
    background-position: 0 100%;
    transition: background-size 0.5s ease-in-out;   
    font-size: 1.4rem;
    margin-left: 6px;
    margin-right: 6px;
    &:hover {
        background-size: 100% 88%;
        color: var(--almstWhite);
        text-decoration: underline;
    }
}

.a-white {
    color: var(--almstWhite);
    padding: 4px 8px;
    background-image: linear-gradient(120deg, #addcff 0%, #eceaea 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.08em;
    background-position: 0 100%;
    transition: background-size 0.5s ease-in-out;   
    font-size: 1.4rem;
    margin-left: 6px;
    margin-right: 6px;
    &:hover {
        text-decoration: underline;
        background-size: 100% 88%;
        color: black;
    }
}
.btn-info {
    background-color: #f39c12;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin: 4vh auto;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    &:hover {
        transform: scale(0.87);
        padding: 0.75rem 1.5rem;
        background-color: #d35400;
    }
  }
.reseaux1 {
    position: absolute;
    left: 1vw;
    z-index: 10;
    width: 2vw;
}
.reseaux2 {
    position: absolute;
    left: 2.3vw;
    width: 2vw;
    z-index: 9;

}
.logo,
.reseaux1,
.reseaux2 {
    transition: all  ease 0.5s;
    &:hover {
        transform: scale(1.1);
    }
}
.logo {
    width: 6vw;
}
.div-grey {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}
.div-image {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}
.submit {
    background-color: #ECECEC;
    border-radius: 4px;
    color: black;
}

.td-middle {
    vertical-align: middle;
}


.text-content {
    text-align: center;
    box-shadow: 12px 12px 2px 1px rgb(0, 0, 0, .5);
    width: fit-content;
    padding: 4vh;
    margin: 2.5vh;
    width: fit-content;
    max-width: 80vw;
    line-height: 1.75;
        }

.arab-text {
    font-family: "Rubik", sans-serif;
    font-style: normal;
}
p.arab-text {
    font-size: 1.4rem;
    font-weight: 300;
}

@media screen and (max-width: 1000px) {
    .reseaux1 {
        position: absolute;
        left: 6vw;
        z-index: 2;
        width: 12vw;
    }
    .reseaux2 {
        position: absolute;
        left: 14vw;
        width: 12vw;
    }
    .text-content {
        box-shadow: black 1px 0 15px ;
    }
    .logo {
        width: 18vw;
    }
}