@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css");

body {
    background-color: #cbccd5;
}

.bg-gris-clair {
    background-color: #ededed;
}

.bg-orange {
    background-color: #f98e00;
}

.text-orange {
    color: #f98e00;
}

a:link {
    text-decoration: none;
}

.central {
    animation: fadeinout 400ms linear 1 forwards;
}

@keyframes fadeinout {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
