nav{
  z-index: 99; /*this being 99 makes sure that its above everything else on the page */
  background-color: #688383;
  padding: 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

a {
  color: #EC6617;
  }

p
{ 
  color: #FFFFFF
}

.navlink{
  background-color: white;
  border-radius: 5px;
  display: block;
  width: 100px;
  padding: 5px;
  margin: 8px 5px 8px;
}

body{
  background-color: #47605B;
  margin: 0;
  padding: 0; 
  font-family: gill sans, sans-serif;
  font-size: 12px;
}

.main { 
  flex: 0 1;
  background: white;
  padding: 15px;
  margin: 5px;
  text-align: center;
  }
  
.mainscroll { 
  flex: 0 1;
  background: white;
  padding:15px;
  margin: 5px;
  text-align: left;
  height: 475px;
  overflow:scroll;
  }
  
.maintrans { 
  flex: 0 1;
  text-align: center;
  margin: 5px;
  }

  
.container {
 background: #E0D3BA;
 width: 930px;
 height: 730px;
 margin: 0 auto;
 padding: 20px;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: stretch;
 column-gap: 5px;
}

.title {
 background: #E0D3BA;
 width: 930px;
 height: 100px;
 margin: 0 auto;
 padding: 20px;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: stretch;
 column-gap: 5px;
}


.minicont {
 margin: 0 auto;
 padding: 20px;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: flex-start;
 column-gap: 5px;
}

.sideimage { /*optional*/
  right: 20px;
  bottom:-20px;
  float: right;
  position: fixed;
  max-width: 600px;
  }
  
.sideimageL { /*optional*/
  left: 20px;
  bottom:-20px;
  float: left;
  position: fixed;
  max-width: 600px;
  }
  
  
/* */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#content-warning {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

#proceed-btn {
  padding: 10px 20px;
  background-color: #C63D2F;
  color: #fff;
  border: none;
  cursor: pointer;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}


/* */ 


.spoiler {
	overflow: hidden;
	position: relative;
	margin: 0px;
	padding: 0;
	display: inline-block; 
}
  
.spoiler img {
	vertical-align: bottom;
	filter: blur(20px) grayscale(100%);
	transition: 0.3s;
}

.spoiler-button {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3rem;
	line-height: 3rem;
	width: 40%;
	padding: 0 1rem;
	font-family: gill sans, sans-serif;
	font-size: 1rem;
	margin: auto;
	background-color: white;
	color: black;
	text-align: center;
	cursor: pointer;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.spoiler-button {
		display: none;
	}
}

div.spoiler input {
	width: 0;
	height: 0;
}

div.spoiler input:checked ~ img {
	filter: none;
}

div.spoiler input:checked, div.spoiler input:checked ~ label {
	display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	div.spoiler input, .spoiler-button {
		display: none;
	}
}


div.nospoiler img {
	filter: none;
}

div.nospoiler button {
	display: none;
}

  
  
  