/*BASICS & INDEX*/

@font-face {
  font-family: 'ClassicConsoleNeue';
  src: url('clacon2.ttf');
}

html, body {
	margin:0;
	padding:0;
	background-color: #000000;
	color: #68e86b;
	font-family:ClassicConsoleNeue;
}

.index, .hub {
	text-align: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  color: #68e86b;
  animation-name:blink;
  animation-duration:2s;
  animation-timing-function:ease-in;
  animation-iteration-count:Infinite;
  }

@keyframes blink{
  50%{color:#bcf5be}
  100%{color:#68e86b}
}
/*STYLE DEFINITION FOR DIVS AND OTHERS*/

.sidenav {
  margin:0.5%;
  height: 90%;
  width:8%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding:1.5%;
  border-style: double;
  border-color: #68e86b;
}

.directory, .bottom, .title {
  color:#f5df4e;
}

.bottom {
	display:flex;
}

.introduction {
  margin-left:12%;
  margin-top:0.5%;
  height: 90%;
  width:84.2%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding:1.5%;
  display: inline-block;
}

.chat {
  margin-left:12%;
  margin-top:0.5%;
  height: 90%;
  width:84.2%;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding:1.5%;
  display: inline-block;
}

.forum {
  list-style-type:none;
  margin-bottom:0.7%;
  
  
}

.row {
  margin-left:12.4%;
  margin-top:0.5%;
  height: 90%;
  width:83.7%;
  padding:1.5%;
  border-style: double;
  border-color: #68e86b;
  z-index: 1;
  top: 0;
  left: 0;
}

/*textarea, button{
  margin-left:12%;
  margin-top:0.5%;
}

.bird {
  border-style: double;
  border-color: #68e86b;
  margin:0;
} DO LATER IF TIME*/

/*BACKGROUND AND TEXT FEATURES*/

body:before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  background-attachment: fixed;
}

input[type=text],textarea, button {
  background-color: #68e86b;
  color: #000000;
  border: 2px #68e86b;
  border-radius: 2px;
  outline: none;
  width: 4%;
  font-family:ClassicConsoleNeue;
  font-size:90%;
  text-align: center;
}

::-moz-selection { /* Code for Firefox */
  color:#000000;
  background:#68e86b;
}

::selection {
  color:#000000;
  background:#68e86b;
}

p {
	font-size:115%;
	
}

h1 {
	font-size:100%;
}

a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
  color:#bcf5be;
} 
a:active { 
  text-decoration: none; 
}
