@import url(https://fonts.googleapis.com/css?family=Khula:700);

body {
	font-family: 'Space Mono', monospace;
  color: white;
  padding-left; 1vw;

	display: grid;
  /*overflow: hidden;*/

	width: 100vw;
	height: 100vh;
	margin: 0px;
	top: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 1.0);
	color: rgba(220, 220, 220, 1.0); /*Text Color*/
}

/*==================================== DIV's ====================================*/
/*Measurements: px - absolute, em - relative to font size,*/
/*% - relative to parent element, vh vw vmin vmax - relative to viewport (height, width, smaller, greater)*/
.main {
	margin: 0px;
}
#mainDiv {
	width: 95vw;
	height: 160em;
	left: 0px;
	margin: 0px;
	padding: 1em;
	place-items: center;
	background-color: rgba(0, 16, 32, 0.8);
	border: dashed;
	border-color: rgba(0, 128, 32, 1.0);
	border-radius: 2em 2em 2em 2em;
	/*box-shadow: 2px 3px 7px 2px;*/
	text-align: center;
}

/*==================================== LINKS ====================================*/
#linksDiv {
	width: 25vw;
	height: 80em;
	object-position: 0px 0px;
	font-size: 0.6em;
	padding: 1em;
	background-color: rgba(0, 0, 0, 0.0);
	text-align: left;
}
/*Slowly move linksDiv up and down*/
/*@keyframes linksUpDownAnim {
	0% { margin-top: 0em; margin-bottom: 1em; }
	50% { margin-top: 1em; margin-bottom: 0em; }
	100% { margin-top: 0em; margin-bottom: 1em; }
}*/
/*Pause linksDiv animation when hovering (to make clicking on links easier)*/
#linksText {
	color: #f0f0f0;
}
/*Links not in #linksDiv??*/
#link2:link {
	color: rgba(110, 110, 240, 1.0);
	text-decoration: none;
}
#link2:visited {
	background-color: rgba(0, 0, 0, 0.3);
	color: rgba(150, 150, 210, 1.0);
	text-decoration: none;
}
#link2:hover {
	background-color: rgba(50, 0, 180, 1.0);
	color: rgba(0, 128, 128, 1.0);
	animation-name: linkHover;
	animation-duration: 0.5s;
	border-radius: 0.5vh;
	text-decoration: bold;
}

/*Add console effect when hovering over links*/

@keyframes linkHover {
	0% {
		color: rgba(110, 110, 240, 1.0);
		background-color: rgba(0, 0, 0, 0.0);
	}
	100% {
		background-color: rgba(50, 0, 180, 1.0);
		color: rgba(0, 128, 128, 1.0);
	}
}

/*==================================== IMAGES ====================================*/
img {
	width: 40%;
	aspect-ratio: 16 / 9;
}
img:hover {
	width: 60%;
}

/*==================================== IFRAMES ====================================*/
/*iframes mostly used to embed YouTube videos*/
iframe {
	width: 40%;
	aspect-ratio: 4 / 3;
	border: solid;
	border-radius: 0px 0px 0px 0px;
	border-width: 2px;
	border-color: rgba(230, 120, 120, 1.0);
}
