@keyframes gradientAnimation {
    0%, 100% { background-position: 100% 50%; }
    50% { background-position:0% 50%; }
}
@keyframes colorAnimation {
    0%, 100% {color: black;}
    50% {color: white;}
}

/* Selecteurs classique */
body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    scroll-behavior: smooth;
    line-height: 1.6;
    
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: "Chivo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
:root {
    --almstWhite : white;
    --redGradient: linear-gradient(135deg, #584654 0%, #282026 100%);
    --darkGrey: #32353b;
    --darkGreyHover: #2D2F34;
    --lightGrey: #f0f0f0;
    --orange: #f39c12;
    --subtleGradient: linear-gradient(135deg, white 0%, var(--lightGrey) 100%)
}

footer {
    background: var(--darkGrey);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(3vh + 20px);
    margin: -10px 0 0 0;
    
}
footer p {
    text-align: center;
    font-size: 0.65rem;
    margin: 0!important;
}

p {
    font-weight: 100;
    font-style: normal;
    font-size: 1.2rem;

}
ol:not(.privacyPolicy) > li {
    font-size: 1.4rem;
}
a {
    text-decoration: none;
    font-weight: 500;
    font-style: italic;
}
a:hover {
    text-decoration: none;
    font-weight : bold;

}
button {
    font-size: 1rem;
    cursor: pointer;
    border: none;
}
div {
    height: fit-content;
    text-align: center;
    width: 100%;
    padding: 5vh;   
}
img:not(.logo) {
    border-radius: 8px;
}
hr {
    border: none;
    border-top: 3px solid var(--darkGrey);
    color: var(--darkGrey);
    overflow: visible;
    float: center;
    height: 4px;
    width: 10%;
    min-width: 175px;
    margin: 6vh auto 6vh auto;
}
h1 {
    font-size: 3rem;
    color: var(--almstWhite);
    margin-top: 7px;
    font-weight: 500;
    margin: 2vw;


}
h2 {
    margin: 2vw;
    font-weight: 200;
    font-style: italic;    
    color: var(--almstWhite);
    font-size: 2.5rem;
}
h3{
    font-weight: 600;    
    color: var(--darkGrey);
    font-size: 1.63rem;
    padding: 10px;
    font-style: italic;

}
td {
    height: fit-content;
    vertical-align: top;
}
table {
    border-spacing: 10px 0rem;
}
input[type="submit"], input[type="reset"], input[type="button"] {
    cursor: pointer;
    padding: 0.4rem;
}
article {
    margin: 1vw;
    height: fit-content;
    
}
section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    height: fit-content;

}

@media screen and (max-width: 1000px) {
    body, .div-image {
        background-attachment: local!important;
    }
    footer {
        padding: 0.5rem;
    }
}