*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    /* height: 100vh; */
    position: relative;
    --vert:#09721b;
    --orange: #fe7624;
    --gris:#ddd;
    --bleu-ciel:#0082f3;
    --bleu-fonce:#142973;
    --turquoise-clair: #d3f0f0;
    --rose-violet: #a877dd;
    --violet-susu-vital-2: #6529da;
    --rose-susu-care: #de2f7e48;
    --rose: #de2f7f;
    --turquoise: #1ac9d7;
    --vert-mère-enfant: #90c78b;
    --blanc-fonce:#f0f5ff;
    --blanc-invisible:#ffffffd9;
}
/*le footer*/
footer{
    background-color:var(--orange);
    width: 100%;
    height: auto;
}
#reste{
    width: 100%;
    min-height: 290px;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
}
.reste2{
    width: 280px;
    min-height: 210px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    color: white;
}
.reste2 a{
    display: flex;
    width: 50px;
    height: 50px;
}
/* .reste2 a:hover{
    background-color:orangered;
    transition: all 0.3s ease;
} */
.footer_logo{
    width: auto;
    gap: 20px;
    display: flex;
}
.footer_logo a{
    background-color: rgb(190, 136, 36);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    
}
.reste1{
    width: 280px;
    min-height: 210px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
}
.reste1 h3{
    font-size: 20px;
    color: white;
}
.reste1 a{
    font-size: 16px;
    color: white;
    display: flex;
    gap: 10px;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
}
.reste1 a:hover{
    color: var(--vert);
    transition: all 0.3s ease;
}
.fin{
    border-top: 1px solid #ddd;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
/*pour le scroll*/
.scroll{
    opacity: 0;
    transform: translateY(50px);  /* décale vers le bas */
    transition: all 0.8s ease;
}

.scroll.visible {
    opacity: 1;
    transform: translateY(0);     /* remonte vers le haut */
}
@media screen and (max-width:1000px){
    .fin{
        font-size: 13px;
    }
}