
/*
     CSS HEX
    --eerie-black: #141414;
    --forest-green-traditional: #084921;
    --green-pigment: #009e3c;
    --turquoise-green: #99d6b0;
    --cultured: #f5f5f5;
    --orange-peel: #ffa10a;

     CSS HSL
    --eerie-black: hsla(0, 0%, 8%, 1);
    --forest-green-traditional: hsla(143, 80%, 16%, 1);
    --green-pigment: hsla(143, 100%, 31%, 1);
    --turquoise-green: hsla(143, 43%, 72%, 1);
    --cultured: hsla(0, 0%, 96%, 1);
    --orange-peel: hsla(37, 100%, 52%, 1);

     SCSS RGB
    $eerie-black: rgba(20, 20, 20, 1);
    $forest-green-traditional: rgba(8, 73, 33, 1);
    $green-pigment: rgba(0, 158, 60, 1);
    $turquoise-green: rgba(153, 214, 176, 1);
    $cultured: rgba(245, 245, 245, 1);
    $orange-peel: rgba(255, 161, 10, 1);
 */

/* Fonts */

    html, body, p, a {
        overflow-x: hidden;
        color: rgba(20, 20, 20, 1);
    }
    h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
        font-style: normal;
    }
    hr {
        border-top: ;
    }
    button:focus {
        box-shadow: none;
    }
    .btn:focus {
        box-shadow: none;
    }
    .mobile_show {
        display: none;
    }

/* Stile Sito */

    body {
        background-color: rgba(153, 214, 176, 1);
        line-height: 30px;
        opacity: 0.9;
        position: relative;
        min-height: 100vh;
    }

    p {
        text-align: justify;
        color: rgba(20, 20, 20, 1);

    }
    h1 {
        text-align: center;
        margin-top: 5rem;
        margin-bottom: 2rem;
        color: rgba(0, 158, 60, 1);
    }
    h2 {
        margin-bottom: 1rem;
        color: rgba(8, 73, 33, 1);
    }
    h3 {

        color: rgba(8, 73, 33, 1);
    }
    a {
        color: rgba(255, 161, 10, 1);
    }
    a:hover {
        text-decoration: none;
    }
    .my-12 {
        margin-top:10rem !important;
        margin-bottom: 10rem !important;
    }
    .btn-outline-info {
    color:  rgba(0, 158, 60, 1);
    border-color:  rgba(0, 158, 60, 1);
    }
    .btn-outline-info:hover {
    color: rgba(8, 73, 33, 1);
    background-color: rgba(255, 161, 10, 1);
    border-color: rgba(255, 161, 10, 1);
    }
