
html {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    color: #0c0c0c;
    background-color: #212529;
    font-size: 13px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-image: url(/images/bg.jpg);
    background-size: cover;
    background-position: center center;
}

.div-logo {
    height: 320px;
    max-width: 500px;
    width: 100%;
    min-width: 300px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url(/images/logo-allees-parc-kenitra.jpg);
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #122919a8;
    color: white;
    text-align: center;
}

.bg-color-band {
    background-color: #122919eb;
}

