#background-canvas {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
    left:0;
}
    body {
        overflow-x: hidden;
    }

main.container {
    z-index: 0;
}

.hero {
    background-image: url("../img/plans.webp");
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik.woff2') format('woff2');
    font-weight: 1 900;
    font-style: normal;
    font-display: swap;
}

.hero .title, .hero .subtitle {
    font-family: "Rubik", sans-serif;
    font-weight: 900;
    font-optical-sizing: auto;
}

#bottombox {
    background-image: url("../img/reflexion.webp");
}

footer > * {
    font-size: smaller;
}

strong {
    color: var(--bulma-primary);
}

.trig-fade-up-left {
    opacity: 0;
    transform: translateX(-20px) translateY(20px);
    position: relative;
}

.trig-fade-up-left.trig {
    animation-name: trig-fade-up-left;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

@keyframes trig-fade-up-left {
    0% {
        opacity: 0;
        transform: translateX(-20px) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0%) translateY(0%);
    }
}

.trig-flip-left {
    display: inline-block;
}

.trig-flip-left.trig {
    animation: trig-flip-left normal ease-out 0.7s;
    animation-delay: 0s;
    perspective: 2000px;
    transform-style: preserve-3d;
}

@keyframes trig-flip-left {
    0% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0deg);
    }

}

.trig-flip-right {
    display: inline-block;
}

.trig-flip-right.trig {
    animation: trig-flip-right normal ease-out 0.7s;
    animation-delay: 0s;
    perspective: 2000px;
    transform-style: preserve-3d;
}

@keyframes trig-flip-right {
    0% {
        transform: rotateY(-90deg);
    }
    100% {
        transform: rotateY(0deg);
    }

}