:root { 
    --main: rgb(136, 51, 68); /* maroon */
    }

html {
        min-height: 100%;
    }
    body {
        margin: 50px 0 0 5%;
        color: black;
        /*background-image: url("background.jpg");
        background-origin: border-box;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;*/
        overflow: scroll;
    }
    body p {
        font-size: 15px;
    }
    body a {
        color: var(--main);
        text-decoration: none;
        text-shadow: 0.75px 0.75px white, -0.75px 0.75px white, 0.75px -0.75px white, -0.75px -0.75px white;

    }
    body a:visited {
        color: var(--main);
    }
    #header {
        top: 0;
        height: 15%;
        width: 100%;
        margin: 0 0 20px;
        background: white;
    }
    #header h1 {
        position: fixed;
        z-index: 100;
        margin: 0 10px 0 20px;
        font-size: 33pt;
	    font-weight: bold;
        color: transparent;
        background-image: linear-gradient(65deg, black 0%, black 48%, var(--main) 51%, black 54%, black 100%); 
        background-size: 300% 100%;
        animation: bannerLoop 10s infinite alternate linear;
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent;
    }
    @keyframes bannerLoop {
        0%, 50%, 100% {
            background-position: 0% 25%;
        }
        25% {
             background-position: 75% 100%;
        }
    }
    #content {
       margin: 15px 0 50px;
       padding-bottom: 200px;
       width: 99%;
       height: 75%;
       font-family: sans-serif;
       word-spacing: 2px;
       line-height: 1.6;
    }
    .titleMenu {
        width: 20%;
        margin: 5px 5% 20px 5%;
        clear: left;
    }
    #menu {
        position: fixed;
        list-style: none;
        list-style-type: none;
        margin: 0 10px 0 -15px;
        padding: 5px;
        width: 100px;
        overflow: visible;
    }
    .titleMenu #menu li {
        float: left;
        display: inline-block;
        font-family: serif;
        text-align: left;
    }
    .titleMenu #menu li a {
        display: block;
        padding: 5px;
        margin: 10px 15px 10px 5px;
        text-align: center;
        font-weight: bold;
    }
    #menu li a:active {
        color: var(--main);
    }
    #menu li a:hover {
        transform: translate(15px); 
        transition-duration: 300ms;
        transition-timing-function: ease-out;
        transition-property: transform;
        transition-delay: 100ms;
    }
    #menu li a:not(:hover) {
        transform: translate(-15px); 
        transition-duration: 150ms;
        transition-timing-function: ease-in;
        transition-property: transform;
        transition-delay: 50ms;
    }
    #description {
        margin: 5px 5% 20px 5%;
        width: 80%;
    }
    #img0 img{
        background: var(--main);
        padding: 3.5px;
        margin: 10px 15px 50px 15px;
        border-radius: 1.5px;
        max-height: 125px;
        width: 80%;
        transform: translateX(33%);
    }
    .text-area {
        padding: 20px 50px;
        margin-left: 25%;
        margin-bottom: 50px;
        width: 82%;
    }
    .text-area:last-child {
        padding-bottom: 100px;
    }
    #img1 {
        display: flex;
        margin: 50px 0 50px;
        clear: left;
        justify-content: flex-start;
        flex-flow: wrap row;
        align-items: flex-start;
        align-self: auto;
    }
    #img1 img {
        background: var(--main);
        padding: 3.5px;
        margin: 10px 15px 10px 5px;
        border-radius: 1.5px;
        max-width: 180px;
        max-height: 130px;
    }
    @media screen and (min-width: 0px) {
        #img1 {
            flex-direction: column;
            margin-left: 115px;
            justify-content: center;
            padding-left: 12%;

        }
        #img1 img, #img0 img {
            /*max-width: 150px;*/
            max-height: 150px;
        }
    }
    @media screen and (min-width: 641px) {
        #img1 {
            flex-direction: row;
            justify-content: flex-start;
        }
        #img1 img, #img0 img {
            margin-left: 5%;
            /*max-width: 150px;*/
            max-height: 150px;
            transition: margin-right 0.5s ease-in;

        }
    }
    @media screen and (min-width: 950px) {
        
    }
    @media screen and (min-width: 1025px) {
        
    }
    @media screen and (min-width: 1439px) { /* TODO: resize the left padding */
        #img1 {
            flex-direction: row-reverse;
        }
        #img1 img, #img0 img {
            /*max-width: 200px;*/
            max-height: 200px;
        }
    }
    #footer {
        position: fixed;
        z-index: 100;
        bottom: -20px;
        left: 1px;
        height: 10%;
        width: 100%;
        margin: 20px 0 0;
        padding-left: 25px;
        padding-top: 25px;
        color: white;
        /*background-color: white;*/
        background-image: linear-gradient(white 4%, var(--main) 5%);
    }
    #marquee {
        left: 15px;
        padding: 15px 0 15px 15px;
        text-align: left;
        font-weight: bold;
    }