#contact-formulaire{
    gap: 5px;
    z-index: 1;
}

.form-label, .form-input {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

label {
    text-transform: uppercase;
    font-size: 1.5em;
}

input, textarea {
    background-color: #5d0956;
    border: none;
}

input{
    height: 20px;
}

.form-container {
    display: flex;
    flex-direction: row;

}








.social {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social li {
    list-style: none;
}
.social li a {
    display: inline-block;
    margin-right: 20px;
    transform: scale(0.8);
    transition: 0.5s;
}
.social li a:hover {
    transform: scale(0.8) translateY(-5px);
}