body {
  font-family: Courier;
  background-image: url(/assets/stars.gif);
  background-size: calc(256px * 2);
  color: white;
}

img {
  max-width:100%;
  border-radius: 5%;
 }
 
@font-face {
    font-family: "Singkong";
    src: local("Singkong"), local("Singkong"),
      url("/assets/fonts/Singkong.ttf");
  } 
  
@font-face {
    font-family: "Daily Hours";
    src: local("Daily Hours"), local("Daily Hours"),
      url("/assets/fonts/Daily Hours.ttf");
  }   

.header-img {
  width: 100%;
  height: 90px;
  background-image: url(/assets/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
}

            :root {
                --header-image: url('/assets/logo.png');
                --body-bg-image: url('/assets/stars.gif');

                --content: #FFFFFF;
            }

            body {
                font-family: 'Courier', sans-serif;
                margin: 0;
                background-color: #212121;
                background-size: 65px;
                color: #FFFFF;
                background-image: var(--body-bg-image);
				background-size: calc(256px * 2);
				text-shadow: 1px 1px black;
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 1100px;
                margin: 0 auto;
            }

            #container a {
                color: #FFFFFF;
                font-weight: bold;
            }

            #header {
                width: 100%;
                height: 178px;
                background-image: var(--header-image);
                background-size: 100%;
				background-repeat: no-repeat;
            }

            #navbar {
                height: 60px;
                background-color: #838383;
                width: 100%;
				border-color: #D7D7D7;
				border-radius: 5px;
				border-width: 3px;
				box-shadow: -5px 5px 0px 0px #D7D7D7;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
				font-size: 18px;
            }

            #navbar li {
                padding-top: 20px;
            }

            #navbar li a {
                color: #FFFFFF;
                font-weight: 800;
                text-decoration: none;
				padding: 5px;
            }
			
            #navbar li a:hover {
                color: #C43EFF;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
			
            #flex2 {
                display: flex;
				justify-content: center;
            }			

            aside {
                background-color: #111111;
                width: 200px;
                padding: 20px;
                font-size: smaller;
				border-color: white;
                border-style: solid;
				border-width: 2px;
                border-radius: 15px;
				box-shadow: -5px 5px 0px 0px #DADADA;
            }

            main {
                background-color: #111111;
                flex: 1;
                padding: 20px;
                order: 2;
				border-color: white;
                border-style: solid;
				border-width: 2px;
                border-radius: 15px;		
                box-shadow: -5px 5px 0px 0px #DADADA;				
            }
			
			main img {
				max-width: 500px;
			}
			
            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #1111111;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }

            h1,
            h2,
            h3 {
                color: #EBEBEB;
            }

            h1 {
                font-size: 35px;
				font-weight: normal;
				font-family: 'Daily Hours', sans-serif;
            }

            strong {
                color: #EBEBEB;
            }

            .box {
                background-color: #000000;
                border: 1px solid #FFFFFF;
                padding: 10px;
				max-height: 409px;
				overflow: auto;
            }

            .box2 {
                background-color: #000000;
                padding: 10px;
				max-height: 409px;
				overflow: auto;
				margin-left: 20px;
            }		

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #111111;
            }
			
div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 1000px;
    padding: 1em;
	width: 690px;
}

div.gallery img {
    border-radius: 15px;
    max-width: 300px;
    max-height: 250px;
    margin-bottom: 8px !important;
    transition: all .2s ease-in-out;
}
  
div.gallery img:hover {
    transform: scale(1.1);
}

div.gallery2 {
  border: 1px solid #ccc;
}

div.gallery2:hover {
  border: 1px solid #777;
}

div.gallery2 img {
  width: 100%;
  height: auto;
}

div.desc2 {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 6px 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

div.sysgallery img {
  width: 100%;
  height: auto;
}


           @media only screen and (max-width: 800px) {
			   
            #header {
                height: 110px;
            }		


            @media only screen and (max-width: 500px) {
                #flex {
                    flex-wrap: wrap;
                }
				
			    #flex2 {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
				
div.gallery {
	overflow: auto;
	width: 340px;
}
				
            #header {
                height: 75px;
            }						

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }
				
				main img {
					max-width: 300px;
				}

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }
				
				#navbar {
					height: 90px;
				}

                #navbar ul {
                    flex-wrap: wrap;
					font-size: 16px;
                }
            }