
/* Light mode */
@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color:black;
    }
    #socialIcons img{
        filter: invert(0);
    }
    #projects img{
        filter: invert(0);
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
    #socialIcons img{
        filter: invert(1);
    }
    #projects img{
        filter: invert(1);
    }
}

body{
    min-height: 100vh;
    max-width: 600px;
    margin: 0 auto;
}


#page-wrapper{
    margin: auto; 
    font-size: 1em; 
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    width: 100%;
}

/* === Header === */
#header{
    text-align: left;
    border-style: none none solid none;
    height: auto;
}
#header #title{
    text-align: left;
    font-size: 3em; 
    font-weight: 400;
}
#header #sub-title{
    font-size: 1.5em;    
}

#header a:link,
#header a:visited,
#header a:hover,
#header a:active {
  color: inherit; /* This makes the link color the same as its parent element's text color */
  text-decoration: none; /* This removes the default underline */
}

#header #about {
    float: right; 
    font-size: 2em; 
    text-align: right;
    /* margin-top: 1em; */
}


#socialIcons{
    /* text-align: left;  */
    /*width: 100%;*/
    margin: auto;
}

#socialIcons img{
    margin: 5px;
    width: 32px;
    height: 32px;
}



/* === content === */
#content{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.1em;
    padding-top: 2em;
    width: 100%;
}




#menu{
    width:20%;
    float:left;
    /*white-space: pre-line;*/
}

#menu a{
    display: block;
    text-decoration: none;
    margin-top: 0.3em;
}


#view{
    width:100%;
    float:right;
    border: none;
    height: auto;
    margin-bottom: 5em; /* white-space at end of page */
}

#view img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 2em;
    width:100%;
    float:none;
}

/* #view br{
}

#view h1{

} */


#view div.downloadLink{
    margin-top: 1em;
}

#view img.downloadIcon{
    width: 60px;
    height: auto;
    float: left;
    margin-top: 0px;
    margin-right: 1em;
    margin-bottom: 0px;
    margin-left: 0px;
}

#view img.pol-made-with{
    width:300px;
    height:auto;
}


#homePageGallery {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /*
    display: block;
    justify-content: space-between;
    */
}

#homePageGallery img {
    margin:10px;
    /*
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    */
    float: left;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    width: 175px;
    height: 175px;
}



#pageTitle{
    font-size: 2em; 
    font-weight: 400;
}



/* EOF */