@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Supprime les flèches Chrome, Edge, Safari */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Supprime les flèches Firefox */

input[type="number"] {
    -moz-appearance: textfield;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0 auto;
    padding-top: 100px;

    background:
        radial-gradient(
            circle at top left,
            rgba(59, 130, 246, 0.07),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(163, 230, 53, 0.055),
            transparent 30%
        ),
        #020617;

    color: #f8fafc;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   HEADER MOBILE DANS LE FLUX DE LA PAGE
======================================== */

@media screen and (max-width: 900px) {
    /*
     * Sur ordinateur, les 100 px compensent le header fixe.
     * Sur mobile, le header est relatif : cette compensation
     * créerait donc un espace vide au-dessus du site.
     */
    body {
        padding-top: 0;
    }
}

