@font-face {
  font-family: 'unifont';
  src: url("unifont-17.0.03.otf");
}

body {
  background-color:black;
  background-size:cover;
  font-size:14px;
  font-family: 'unifont';
  color: white;
  /* Safari seems to support, but seems deprecated and does the same thing as the others. */
  image-rendering: -webkit-optimize-contrast;
  
  }
  
a {
    color: red;
  }
  
.hoverimg {
  position: fixed;
  left: 130px;
  width:200px;
  opacity: 0.7;
  }

.hoverimg img{
  max-width: 100%;
  height: auto;
  display:block;
  }

.scrollable {
    overflow-y: auto;
	scrollbar-width: none;  /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
  }

.scrollable-main {
    overflow-y: auto;
	scrollbar-width: none;  /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
  }

.scrollable::-webkit-scrollbar {
  display: none;
  }

.tiny {
  font-size: 9px;
  margin: 0 auto;
  text-align: center;
  }

.unifont {
  font-family: 'unifont';
}
  
/*Everything in the main box goes in this*/
.wrapper {
  width: 800px;
  border: 1px solid white;
  top: 0px;
  margin: auto;
  margin-top: 60px;
  box-sizing: border-box;
  border-radius: 5px;
  }
  
.header {
  background: black;
  height: 200px;
  border-bottom: 1px solid white;
  margin: 0 auto;
  overflow: hidden;
  background: url(assets/bannercard2.png); /*Header image -- replace with your own!*/
  background-size:cover;
  }
  
/*This and the header-title class are deprecated now that this style uses a background image for the header div.*/
/*.header img {
  display: block;
  opacity: 0.35;
  width: 100%;
  height: 100%;
  overflow: hidden;
  }
*/

 /*If you want to use a smaller title or normal text, add .header p or .header h4 or whatever to the list*/
.header h2, .header h3, .header h1 {
  font-family: unifont;
  font-weight: bold;
  color: white;
  text-align: center;
  border: 0px solid green;
  margin: 18% auto; /*approx centered*/
  opacity: 0.999999;
}

.links {
  background: black;
  padding: 10px;
  border-bottom: 1px solid white;
  }
  
.links a {
  color: white;
  padding: 3px;
  margin-left: 5px;
  margin-right:5px;
  text-decoration: none;
  font-size:17px;
  }
  
a, .links {
	color: #FFF;

  }
  
a:hover, a:active {
  color: red;
}

.main {
  padding: 15px;
  margin: 0 auto;
  background: #000;
  }
  
/*Prevent overflow of large images in main text areas.*/
.main img {
  max-width: 100%;
  height: auto;
  }
  
.sharper img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  }

.side {
	width: 80%;
	align: right;
	padding: 15px;
  }
		
.clear {
	clear: both;
  } 

.side-box {
	background: #000;
	padding: 12px;
	min-height: 200px;
	border: 1px solid white;
  }
  
.chat-box {
	background: #000;
	padding: 12px;
	min-width: 150px;
	max-height: 150px;
	border: 1px solid #FFFF;
	color: #3fff00;
	overflow: auto;
  }

.row {
	display: flex;
	justify-content: center;
	align-items: center;
		
  }
  
  .flex {
  	display: flex;
  }
  
.container {
  display: grid;
  grid-template-columns: auto;
  padding: 10px;
  }

.container div {
  background-color: black;
  border: 1px solid white;
  min-width: 250px;
  max-height: 200px;
  padding: 10px;
  font-size: 14px;
  text-align: center;

  }
  
.footer {
  background: black;
  padding: 20px;
  padding-top:5px;
  padding-bottom:5px;
  border-top: 1px solid white;
  font-size:14px;
  }
  
.containerbox {
  position: relative;
  text-align: center;
  color: white;
}

/* Centered text */
.centered {
  background: linear-gradient(rgb(20,5,0,0.5), rgb(20,5,0,0.5));
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
  
/*For narrow screens*/
@media(max-width: 790px) {
  .wrapper {
    width: 95%;
    }
  .header h1, .header h2, .header h3 { /*Vertical centering gets wonky when the box is variable width*/
    margin: 20% 5% auto;
    }
  }  

/*Mobile compatibility*/
@media(orientation: portrait) {
  .wrapper {
    width: 95%;}
  .header {
    height:230px;
    }
  .header h1, .header h2, .header h3 {
    margin: 20% 3% auto;
    }
  }