html{
  /*Set some global colors here for quick re-coloring of stuff!*/
  --bg-color:  #000000;
  --darker-color: #000000;
  --lighter-color:  #000000;


  --sidebar-width:140px;
  background-color: #e82484;
  	background-size:cover;
  width: 100%;

  position: relative;
}

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, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	color: #e82484;
	font-size: 105%;
	font-family: Courier

}



/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
, header, hgroup, menu, nav, section {
	display: block;
	color: #000000;
	background-color: #000000;
}
body {
	line-height: 1.3;
	background-color: #000000;
	text-align: center;
	margin:0px 10px 0px;
}
ol, ul {
	list-style: none;
	list-style-type: square;
}

h1 {
	width: calc(100% - 20px);
	font-size: 11px;
	font-weight: bold;
	padding: 25px 10px 10px;
}
h1 img{
	width: 100%;
	max-width: 969px;
}

h2{
	font-size: 11px;
	font-weight:bold;
	padding: 10px 8px 10px;
}

.boxgallery{
	margin: auto;
	padding:15px 30px 15px;
	max-width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	background-color: #000000;
}

.box{
	display: inline-block;
	position: relative;
	min-width: 100px;
	max-width: 200px;
	min-height: 200px;
  max-height: 300px;
	margin: 5px;
	flex-grow: 3;
	background-color: #e82484;
	background-position: center;
	background-size:cover;
	border: 1px solid #e82484;
}

.boxHover{
	position: absolute;
	top: 0;
	bottom:0;
	padding: 15px 0px 30px;
	width: 100%;
	opacity: 1;
	transition: opacity 0.6s ease;
	display:flex;
	flex-flow: column wrap;
	overflow: auto;
}

.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:#e82484;
	font-size: 80%;
	opacity: 0;
	transition: opacity 0.4s;
}

.boxHover:hover a, .boxHover:hover p{
	opacity: 1;
}

.content{
	background-color: #e82484;
	border: 2px #e82484;
	margin: auto;
	margin-bottom: 15px;
	text-align: left;
	max-width: 1300px;
	
}

