@import url(./animation.css);
@import url(./navbar.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif !important;
}

body {
    min-height: 100vh;
    width: 100%;
    background-color: var(--body-background-color);
}

:root {
    --color-vert: #abc7b7;
    --color-rose: #eab9ae;
    --color-rose-clair: #f9e2d1;
    --color-gris: #d0d3c7;
    --body-background-color: #fff9f7;
}

.display-none {
    display: none !important;
}

.justify-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

/* Bouton dons */
#don {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--color-rose);
    height: var(--navbar-height);
    box-shadow: var(--navbar-box-shadow);
    border-radius: 9px;
    z-index: 900;
    animation: don-color 2s linear infinite;
}
@keyframes don-color {
    0% {
        background-color: var(--color-rose);
    }
    50% {
        background-color: var(--color-rose-clair);
    }
    100% {
        background-color: var(--color-rose);
    }
}
@media screen and (max-width: 600px) {
    #don {
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
}
#don a {
    color: var(--navbar-text-color);
    font-size: 1.5em;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
#don a::before {
    content: url(/images/don.svg);
    margin-right: 13px;
}