/* HEAD STYLE */

/* Fonts */

    html , body , p {
        font-family: 'Exo 2', sans-serif;
    }
    h1 , h2 , h3 , h4 , h5 , h6 {
        font-family: 'Ribeye Marrow', cursive;
    }
/* Stile Sito */

    body {
        background-color: #1f1f1f;
        position: relative;
    }
/* Palette colore */

    .colore-grigio-scuro {
        color: #1f1f1fff;
    }
    .colore-nero {
        color: #141414ff;
    }
    .colore-blu {
        color: #3075ffff;
    }
    .colore-blu75 {
        color: rgba(48, 117, 255, 0.75);
    }
    .colore-blu50 {
        color: rgba(48, 117, 255, 0.5);
    }
    .colore-blu25 {
        color: rgba(48, 117, 255, 0.25);
    }
    .colore-rosso {
        color: #e7364bff;
    }
    .colore-rosso75 {
        color: rgba(231, 54, 75, 0.75);
    }
    .colore-rosso50 {
        color: rgba(231, 54, 75, 0.5);
    }
    .colore-rosso25 {
        color: rgba(231, 54, 75, 0.25);
    }
    .colore-bianco {
        color: #edf3ffff;
    }

    /* SCSS RGB
    $eerie-black: rgba(31, 31, 31, 1);
    $eerie-black-2: rgba(20, 20, 20, 1);
    $blue-crayola: rgba(48, 117, 255, 1);
    $red-crayola: rgba(231, 54, 75, 1);
    $alice-blue: rgba(237, 243, 255, 1);
    */

    /* CSS HEX
    --green-pantone: #3ba541;
    --bleu-de-france: #258fef;
    --fuchsia: #ff2dff;
    --maximum-red: #df1014;
    --pumpkin: #ee711f;
    --jonquil: #fdd12a;
    --french-lime: #a0ff26;
    --sky-blue: #67c7ea;
    --light-gray: #cdcbcd;
    --sonic-silver: #707070;
     SCSS RGBa
     $green-pantone: rgba(59, 165, 65, 1);
     $bleu-de-france: rgba(37, 143, 239, 1);
     $fuchsia: rgba(255, 45, 255, 1);
     $maximum-red: rgba(223, 16, 20, 1);
     $pumpkin: rgba(238, 113, 31, 1);
     $jonquil: rgba(253, 209, 42, 1);
     $french-lime: rgba(160, 255, 38, 1);
     $sky-blue: rgba(103, 199, 234, 1);
     $light-gray: rgba(205, 203, 205, 1);
     $sonic-silver: rgba(112, 112, 112, 1);
    */

    .parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

/* Footer Style */

    .footer {
        color: #edf3ffff;
    }
    .footer h6 {
        font-family: 'Exo 2', sans-serif;
    }

    .footer a {
        text-decoration: none;
        color:inherit;
        cursor: pointer;
    }

    /* @media (max-width: 575.98px) {
        .fixedMenu {
            display: none;
        }
        .topMenu {
            display: none;
        }
        .mobileMenu {
            display: block;
        }
     }
    @media (min-width: 576px) {
        .fixedMenu {
            display: block;
        }
        .topMenu {
            display: block;
        }
        .mobileMenu {
            display: none;
        }
     } */
