html{
  /*Set some global colors here for quick re-coloring of stuff!*/
  --darker-color: black;
  --lighter-color:  #D7ADE8;
  --accent-color: white;

  --sidebar-width:140px;
  background-image: url(https://gabestash.neocities.org/backgrounds/monochrome/mono326.webp); /*add image url for tiled background*/
  width: 100%;
  min-height: 100vh;
  position: relative;

}
  /* Unvisited link */
a:link {
  color: #a62126;
}

/* Visited link */
a:visited {
  color: #faf0f0;
}

/* Mouse over link */
a:hover {
  color: #ff0008;
}
  
@font-face {
  font-family: GothicByte; /* set name */
  src: url(https://korsepoison.neocities.org/GothicByte.ttf); /* url of the font */
}


@font-face {
  font-family: Alfena Pixel; /* set name */
  src: url(https://korsepoison.neocities.org/AlfenaPixel-Regular_demo.otf); /* url of the font */
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.3;
	text-align: center;
	margin:0px 10px 0px;
	background-color: rgba(0, 0, 0, 0.5);
}
ol, ul {
	list-style: none;
	list-style-type: square;
}

h1 {
	width: calc(100% - 20px);
	font-size: 3em;
	font-weight: bold;
	padding: 25px 10px 10px;
	color: #cc353a;
	font-family: GothicByte;
}
h1 img{
	width: 100%;
	max-width:720px;
}

h2{
	font-size: 1.5em;
	font-weight:bold;
	padding: 10px 8px 10px;
	color: #cc353a;
	font-family: Alfena Pixel;
}

.boxgallery{
	margin: auto;
	padding:15px 30px 15px;
	max-width: 100%;
	display: flex;
	flex-flow: row-reverse wrap-reverse;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.5);
}

.box{
	display: block;
	position: relative;
	min-width: 300px;
	max-width: 400px;
	min-height: 300px;
	margin: 5px auto;
	background-size:cover;
	background-color:#b8b8b8;
	border: 4px solid #cc353a;
	filter: drop-shadow(8px 8px 10px black);
}

.boxHover{
	position: absolute;
	top: 0;
	bottom:0;
	padding: 15px 0px 30px;
	width: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	display:flex;
	flex-flow: column nowrap;
	overflow: hidden;
}

.boxHover:hover{
	opacity: 1;
	background: grey;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 0.6s;
}

.box a, .box p{
	display: inline-block;
	width: 90%;
	margin:auto;
	color:white;
	font-size: 130%;
	opacity: 0;
	transition: opacity 0.4s;
}

.boxHover:hover a, .boxHover:hover p{
	opacity: 1;
}

.content{
	background-color: white;
	border: 4px solid white;
	margin: auto;
	margin-bottom: 15px;
	text-align: left;
	max-width: 1300px;
}

p{
	padding: 10px 12px 10px;
	color: #3498db;
}

footer{
	width: 100%;
}