.info{
	position: fixed; 
	top: 0px;
	left: 120vw;
	height: 100vh;
	width: 100vw;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #D6FF00;
	opacity: 0.0;
	z-index: 1000;
	transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
}

.info_open{
	position: fixed; 
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #D6FF00;
	opacity: 1.0;
	z-index: 1200;
	transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
}

#info_bio{
	margin-top: 200px;
	margin-left: 5vw;
	margin-bottom: 120px;
	display: block;
	width: calc(100% - 80px);
	background-color: none;
	text-align: left;
}

.info_textcontainer{
	margin-left: 5vw;
	display: block;
	width: calc(90vw);
	background-color: none;
}

.info_textcolumn {
	top: -1px;
	float: left;
	width: 100%;
	margin-bottom: 20px;
	background-color: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: black;
}

.info_header{
	padding-top: 10px;
	color: #0A0A0A;
	width: 100%;
	padding-bottom: 10px;
}

.info_lines {
	width: 100%;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: black;
	text-align: left;
	margin-top: -1px;
	padding: 10px 0px 10px 0px;
	word-wrap: auto;
	text-transform: none;
}


.othergoons{
	display: inline-block;
}

#info_smile{
	height: 80px; 
	margin-left: -15px; 
	margin-bottom: -5px;
	animation-name: smileBitch;
   	animation-duration: 6s;
   	animation-iteration-count: infinite;
   	animation-timing-function: linear;
	}

		@keyframes smileBitch {
		    100% {transform: rotate(360deg);}
		}

@media only screen and (max-width: 800px) {
 
	.info{
		display: none;
	}

	.info_open{
		display: none;
	}


}


