		
/* 
		
	heyyy thasts MY cascading style sheet.

*/

		/** basic **/

body{
	font-family:consolas, monospace;
	margin:0;
	font-size:15px;
	line-height:150%;
	background-color:#111;
	color:#eee;
	word-wrap: break-word;
}
		h1{
			line-height:100%;
			font-size:280%;
			margin:0 10px;
			padding:10px 0;
			width:auto;
		}
		h2{
			line-height:100%;
			font-size:20px;
			margin:0 10px;
			font-weight:normal;
		}
		h3{
			line-height:100%;
			font-size:20px;
			margin:10px 20px;
			padding:5px 0 0;
		}
	p{
		margin:0 10px;
		padding:5px 0;
	}
		a{
			color:#12ea77;
			text-decoration:none;
		}
		a:hover{
			color:#75ff9c;
			text-decoration:underline;
		}
		ol{
			margin:5px 60px;
			padding:5px 0;
		}
		ul{
			margin:7px 6%;
			padding-left: 0;
			list-style-type: '🞂 ';
		}
			
	abbr{
		cursor:help;
		text-decoration:none;
	}
		
	img{
		margin:auto;
	}
	
		

		/* containers */

header{
	text-align:center;
	margin:50px auto 10px;
	z-index:10;
}

#wrapper{
	max-width:800px;
    margin:auto;
    top:0;
	height:100%;
	padding:15px;
	background:#000;
	border-radius:5px;
}

#main{
	display:flex;
}

	#submain{
		max-width:600px;
		padding:0;
	}
	
	#sidebar{
		width:200px;
		margin-right:5px;
	}

nav{
	line-height:100%;
	padding:8px 13px;
	cursor:default;
	font-size:23px;
	font-weight:bold;
	margin-bottom:5px;
}

.secth{
	background-color:#07c65a;
	padding:10px 5px 10px;
	cursor:default;
	color:white;
	text-shadow: 2px 2px #000;
}

	.any{
		background:#111;
		overflow:auto;
		border-radius:5px;
	}
	.anyp{
		padding:5px;
	}

		/**** tt ****/

.tooltip{
    display: inline;
    position: relative;
}
 
#s-m-t-tooltip {
    max-width:300px;
	font-size:16px;
    text-align:center;
    padding:5px 10px;
    margin:25px 0 0 15px;
    z-index:6969420;
    color:#ffffff;
    background-color:#000000;
    box-shadow:0 0 5px 3px #000000;
}

footer{
		text-align:center;
		max-width:1000px;
		margin:-7px auto auto;
	}
		
		
		

/** media query 

@media only screen and (max-width: 800px) {

	
	#mainflex{
		
		display:flex;
		flex-wrap:wrap;
		margin:0 5px;
	}
	
	#lside{
		float:none;
		width:100%;
		order:2;
		margin-right:0;
		margin-top:5px;
	}
	#rside{
		float:none;
		width:100%;
		order:1;
	}
	
}**/