/* Make for a nice scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #eca943 black;
}

*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: black;
}
*::-webkit-scrollbar-thumb {
  background-color: #eca943;
  border-radius: 20px;
  border: 3px solid orange;
}

/* Create colored frame around view port */
body, html {
    background-color: black;
    height: 100%;
    overflow-y: auto;
    margin: 0;
}

body:before, body:after {
    content: "";
    position: fixed;
    background: #f6414d;
    left: 0;
    right: 0;
    height: 15px;
}

body:before {
    top: 0;
}

body:after {
    bottom: 0;
}

body {
    border-left: 15px solid #f6414d;
    border-right: 15px solid #f6414d;
}

/* Some general stylings */
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    color: white;
    padding-bottom: 10px;
    line-height: 24px;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30pt;
    color: white;
    padding-left: 40px;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20pt;
    color: #f6414d;
    padding-bottom: 0px;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20pt;
    font-weight: normal;
    color: #f6414d;
    padding-bottom: 0px;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16pt;
    font-weight: normal;
    font-style: italic;
    color: #f6414d;
    padding-bottom: 0px;
}

a:link {
    color: inherit;
    text-decoration: underline;
}

a:visited {
    color: gray;
}

a:hover {
    color: #eca943;
}

#abt a:link {
    color: inherit;
    text-decoration: none;
}

/* Make the header */
.header {
    position: fixed;
    left: 15px;
    top: 15px;
    width: 95%;
    background-color: rgba(0,0,0,1.0);
    color: white;
}

.header_col {
    float: left;
    width: 50%;
}

.header_row:after {
    content: "";
    display: table;
    clear: both;
}

/* This is for the project icons and the project menu */
#thumbs {
    text-align: left;
    margin-top: 30px;
    margin-left: 35px;
}

#thumbs a {
    padding: 5px;
}

/* This is for the about button */
#abt {
    text-align: right;
    margin-top: 30px;
    margin-right: 40px;
}

.about-content {
    padding-left: 40px;
    padding-right: 150px;
    margin-top: 170px;
    margin-bottom: 70px;
    text-align: left;
}

/* Create container for the main page contents (maybe not really needed) */
.container {
    height: 100%;
}

/* Style for the privacy policy and legal notice */
.text {
    margin-top: 150px;
    margin-bottom: 70px;
    padding-left: 40px;
    padding-right: 150px;
    text-align: left;
}

.text ul {
    list-style-type: square;
    list-style-position: inside;
}

.text li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    color: white;
    padding-bottom: 10px;
    line-height: 24px;
}

/* Two column layout for projects contents (text + icon) */
.column {
    float: left;
    margin-top: 150px;
    margin-bottom: 70px;
}

.left {
    width: 60%;
    padding: 0px 0px 20px 40px;
}

.right {
    width: 30%;
    padding: 0px 0px 0px 0px;
}

#icon {
    width: auto;
    padding-left: 70px;
    padding-top: 100px;
}

/* Create the page footer */
.footer {
    position: fixed;
    left: 55px;
    bottom: 0;
    width: 90%;
    background-color: rgba(0,0,0,1.0);
    color: white;
    text-align: left;
}

.footer_col {
    float: left;
    width: 30%;
}

.footer_row:after {
    content: "";
    display: table;
    clear: both;
}

.footer p {
    font-size: 10pt;
    color: #808080;
}

/* Don't display the footer for the mobile site -- looks bad */
#footer_mobile {
    display: none;
}

/* Take care of the mobile menu */
#menuToggle {
    display: none;
}

/* Settings for making this look good  on small displays */
@media screen and (max-width: 700px) {

    /* Create colored frame around view port (slightly thinner) */
    body:before, body:after {
        content: "";
        position: fixed;
        background: #f6414d;
        left: 0;
        right: 0;
        height: 5px;
    }

    body:before {
        top: 0;
    }

    body:after {
        bottom: 0;
    }

    body {
        border-left: 5px solid #f6414d;
        border-right: 5px solid #f6414d;
    }

    /* Adjust the header */
    .header {
        position: fixed;
        left: 5px;
        top: 5px;
        width: 95%;
        background-color: rgba(0,0,0,1.0);
        color: white;
    }

    .header_col {
        float: left;
        width: 50%;
    }

    .header_row:after {
        content: "";
        display: table;
        clear: both;
    }

    #abt {
        margin-top: -10px;
        margin-right: 10px;
    }

    /* Make the mobile menu */
    #thumbs {
        display: none;
    }

    #menuToggle
    {
        display: block;
        position: relative;
        top: 30px;
        left: 20px;
  
        z-index: 1;
  
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle input
    {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
  
         cursor: pointer;
  
        opacity: 0; 
        z-index: 2; 
  
        -webkit-touch-callout: none;
    }

    /* Make tge Hamburger */
    #menuToggle span
    {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
  
        background: #ffffff;
        border-radius: 3px;
  
        z-index: 1;
  
        transform-origin: 4px 0px;
  
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
    }

    #menuToggle span:first-child
    {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2)
    {
        transform-origin: 0% 100%;
    }

    /* Transform Hambuerger spans into X */
    #menuToggle input:checked ~ span
    {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #f6414d;
    }

    /* ... but hide the middle span */
    #menuToggle input:checked ~ span:nth-last-child(3)
    {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2)
    {
    transform: rotate(-45deg) translate(0, -1px);
    }

    #menu
    {
        position: absolute;
        width: 60px;
        margin: -40px 0 0 -20px;
        padding: 20px;
        padding-top: 80px;
  
        background: rgba(0,0,0,0.7);
        list-style-type: none;
        
        transform-origin: 0% 0%;
        transform: translate(-110%, 0);
  
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu li
    {
        padding: 5px 0;
    }

    #menuToggle input:checked ~ ul
    {
        transform: none;
    }
    /*----------------------*/

    .about-content {
        padding-left: 20px;
        padding-right: 30px;
        margin-top: 120px;
    }

    .text {
        padding-left: 20px;
        padding-right: 30px;
    }

    .column {
        margin-top: 95px;
        margin-bottom: 0px;
    }

    .left {
        width: 87%;
        padding: 0px 0px 40px 20px;
    }

    .right {
        width: 95%;
        padding: 0px 0px 0px 0px;
    }

    .footer {
        display: none;
    }

    #footer_mobile {
        display: block;
        font-size: 10pt;
        color: #808080;
    }
   
    #icon {
        width: 200px;
        margin-top: -120px;
        margin-left: 30px;
        padding: 0;
    }

}


