	:root {
			--text: white;
			--border: #5a7678;
			--accent: #74C365;
			--bg: #12100e;
      --bg2: #445e93;
			--gradientBottom: rgb(0, 50, 60);
			--gradientTop: darkslategrey;
	    }
	header {
		background: url('Image/Banner.png');
  }
  * { 
	box-sizing: border-box;
  }
body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: var(--text);

	/* page background pattern */
	background-color: #12100e;
  background-image:  radial-gradient(#212652 2px, transparent 2px), radial-gradient(#212652 2px, #12100e 2px);
  background-size: 80px 80px;
  background-position: 0 0,40px 40px;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	outline: 3px solid var(--bg2);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
	background-color: rgb(0, 50, 60);

}
/* these control the column widths */
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }


header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 5px;
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--bg2);
}


nav {
	border: 2px ridge var(--border);
	border-radius: 5px;
	padding: 5px;
	background: var(--bg2);
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: #121212;
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: lightblue;
}
nav a:hover, nav a:focus {
	background: #202020;
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border:2px ridge var(--border);
	border-radius: 5px;
}


section {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: var(--bg2);
	padding: 5px;
}


footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
	color: var(--accent);
}
h4 { 
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}
a:visited {
	color: var(--accent);
}

    /* (B) GALLERY WRAPPER */
  .gallery {
    /* (B1) GRID LAYOUT - 3 IMAGES PER ROW */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  
    /* (B2) OPTIONAL WIDTH RESTRICT */
    margin: 0 auto;
    overflow: hidden;
  }
  
  /* (C) GALLERY IMAGES */
  .gallery img {
    /* (C1) DIMENSION */
    width: 100%;
    height: 180px;
    padding: 5px;
    /* (C2) COLORS */
    object-fit: cover;
  }
  
  /* (D) ON SMALL SCREENS - 2 IMAGES PER ROW */
  @media only screen and (max-width: 600px) {
    .gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
    /* (E) OPTIONAL ZOOM ON HOVER */
  .gallery img:hover {
    z-index: 9;
    transform: scale(1.1);
    /* linear | ease | ease-in | ease-out | ease-in-out */
    transition: transform ease 0.5s;
  }
  
  /* (F) FULLSCREEN MODE */
  .gallery img.full {
    position: fixed;
    top: 10%; left: 0; z-index: 9;
    width: 100%; height: 70%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.7);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    border: 0;
  }
  .gallery img.full:hover {
    z-index: 999;
    transform: none;
  }