 :root
        {
            --height: 10vh;
            --fontsize: 1.5em;
            --header-font-size: 2em;
            --main-color: rgb(23, 94, 169);
            --background-color: white;
            --text-color: black;
            --width-mobile-button: 10vh;
            --time-transition: .5s;
            --main-width: 100%;
            --index: 2;
        }
        *
        {
            margin: 0;
            padding: 0;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            text-align: center;
            box-sizing: border-box;
        }
        html, body
        {
            height: 100%;
            background-color: white;
            color: #222;
        }

        @media (prefers-color-scheme: dark)
        {
            html, body{
                background-color: #222;
                color: white;
            }
        }
        header
        {
            margin-top: calc(var(--height) + 2vh);
        }
        nav
        {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--height);
            display: flex;
            z-index: var(--index) !important;
        }
        nav a
        {
            background-color: var(--main-color);
            color: white;
            text-decoration: none;
            font-size: var(--fontsize);
            font-weight: 900;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        nav a:hover
        {
            background-color: aliceblue;
            color: var(--text-color);
        }
        main article p
        {
            text-align: justify center;
            line-height: 150%;
            width: 100%;
        }
        main article
        {
            background-color: rgba(75, 75, 75, 0.196);
            width: 100%;
        }
        
        footer
        {
            background-color: var(--main-color);
            color: white;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            padding: 10px 0;
        }
        p{
            font-size: var(--fontsize);
        } 
        @media (min-width: 768px) {
            
            
            #header
            {
                display: none;
            }
           main section picture img{
            margin: auto;
            width: 50%;
           }
           main article{
            width: 100%;
            margin: auto;
           }
           main article p{
            width: 80%;
            margin: auto;
            padding: var(--height);
           }
           #mobile-nav
           {
             display: none;
           }
        }
        @media (max-width: 768px)
        {
            
            header
            {
                height: var(--height);
                margin-top: 0;
                margin-left: 0;
                margin-right: 0;
            }
           
            #mobile-nav
            {
                position: fixed;
                top: 0;
                right: 0;
                display: block;
                width: var(--width-mobile-button);
                height: var(--height);
                background-color: var(--main-color);
                transition: all var(--time-transition) ease-in-out;
                z-index: var(--index);
            }
            #header
            {
                font-size: var(--header-font-size);
                float: left;
                width: calc(100% - var(--width-mobile-button));
                position: fixed;
                left: 0;
                top: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                height: var(--height);
                background-color: var(--main-color);
                color: var(--background-color);
                transition: all var(--time-transition) ease-in-out;
                z-index: var(--index);
            }
            #header.active
            {
                transform: translateX(-100%);
            }
            #mobile-nav.active
            {
                background-color: #1a1a1a;
            }
            nav
            {
                height: 70%;
                display: block;
                width: calc(100% - var(--width-mobile-button));
                transition: all var(--time-transition) ease-in-out;
                transform: translateX(-100%);
                z-index: 0;
            }
            nav.active
            {
                transform: translateX(0);
            }

            .line
            {
                border-radius: 15px;
                margin-top: 1.75vh;
                background-color: var(--background-color);
                width: 8vh;
                margin-left: 1vh;
                margin-bottom: 0;
                height: 1vh;
            }
            nav a
            {
                height: 10%;
            }
            main article p
            {
                max-width: 90%;
                padding: calc(var(--height) + 24px) 0;
                font-weight: 400;
                margin-left: 5%;
                text-align: center;
            }
            main article picture img{
                max-width: 100%;
            }
        }
        #contact-address, #address-pay-donate
        {
            font-size: var(--fontsize);
        }