body {
	font-family: lucida console, sans-serif;
	font-size: medium;
	color: #00c267;
    text-shadow: 0 0 2px #00ff12;
	background: #1e1e1e;
}

img {
	max-width:100%;
}

a {
	color: #00c267;
	text-decoration: none;
}

a b:hover {
	color: #FFFFFF;
}

a:hover { 
	color: #FFFFFF;
}

 @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
					flex-direction: column;
                }
				table {
					flex-direction: column;
				}
}

#main {
	/*background: #1f1f1f;*/
	background-color: #1e1e1e;
	background-image: url(assets/brick-wall-dark.png);
	max-width: 1100px;
	margin: 0 auto;
	border: 50px solid #1e1e1e;
	border-image: url(assets/Frame.png) 33% stretch;
}

#navigation {
    text-align: center;
	padding: 9px;
	padding-left: 5%;
    border: 5px solid #00c267;
	font-size: large;
	text-transform: uppercase;
	font-weight: bold;
	color: #FFFFFF;
	word-spacing: 10px;
	background-image: linear-gradient(to right, #061009, #041d0a, #041d0a, #08130b);
}

#navigation a {
	color: #ffffff;
	-webkit-transition:color 0.2s ease-in; 
	-moz-transition:color 0.2s ease-in; 
	-o-transition:color 0.2s ease-in; 
	transition:color 0.2s ease-in;
	text-decoration: none;
}

#navigation a:hover {
	text-shadow: 0 0 7px #FFFFFF;
	color: #000000;
	-webkit-transition:color 0.2s ease-in; 
	-moz-transition:color 0.2s ease-in; 
	-o-transition:color 0.2s ease-in; 
	transition:color 0.2s ease-in; 
}

/*CHARACTER NAVIGATION START*/
/*
.dropbtn {
	font-size: large;
	text-transform: uppercase;
	font-weight: bold;
	color: #FFFFFF;
	border: none;
	outline: none;
	font-family: 'Roboto';
	padding: 10px;
	background-color: #3e5104;
}

.dropbtn:hover .dropbtn:focus {
	background-color: #86b105;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.show {
	display: block;
}
*/
/*CHARACTER NAVIGATION END*/

#graffitiZone {
	position: relative;
	height: 700px;
	overflow: hidden;
	max-width: 100%;
}

h1 {
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Arial';
	font-size: 40px;
}

h2 {
	text-transform: uppercase;
	color: #FFFFFF;
}

h3, h4 {
	color: #FFFFFF;
	text-transform: uppercase;
}

b {
	color: #00c267;
}

#footer {
	text-align: center;
	position: relative;
	margin-bottom: 10px;
}

#flex {
	display: flex;
	gap: 8px;
	overflow: auto;
	align-items: stretch;
	justify-content: center;
}

.textBox {
	background: #031001;
	padding: 10px;
	border: 5px solid #00c267;
	text-align: left;
	flex: 1;
}

.invisBox {
	flex: 1;
	/*padding: 10px;*/
}

.imgBorder {
	outline: 2px solid #00c267;
}

.imageText {
	text-align: center;
	padding: 10px 20px;
}

/* GALLERY CODE */
.gallery {
  /*display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  padding: 20px*/
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.gallery img {
    width: 170px;
    height: 170px;
    transition: 0.5s;
    padding: 5px;
}
        
.gallery img:hover {
    filter: drop-shadow(4px 4px 6px #00c267);
}

.galleryItem {
}

/*Old Gallery Code
.galleryItem {
  overflow: hidden;
}

.galleryItem img {
     width: 100%;
     height: auto;
     display: block;
 }

.galleryImage {
  max-height: 200px;
  max-width: 200px;
}

.lightboxImage {
	max-height: 100%;
}

.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0,1); 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
}

.lightbox:target {
  transform: scale(1,1);
  transform-origin: left; 

}

.lightboxBox {
  height: 90%;
  position: relative;
}

.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
*/