/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body { 
	background-color: black;
	 /*background-image: url('/home/styx/cutie patootie/231af803d11b253f0a55d34131bc41ab.jpg');*/ 
	 /*background-repeat: no-repeat;*/
	 /*background-attachment: fixed;*/
	 /*background-size: cover;*/ 

}


/*---------------------------------------- general stuff copied from other css to speed thangs up ---------------------------*/

a:link {
	color:mediumslateblue;
}

a:visited { 
	color:cornflowerblue;
}

a:hover {
	color:azure;
	/*-- ayy mirabue guy the goat --*/
}

h1 {
	color:white;
	font-size:3vw;
}

h2 {
	color:azure;
}

h5 { 
	color:white;
	font-size:1vw;
}

p {
	color:white;
}

samp {
	color:white;
}
pre {
	color:white;
	display:block;
	width:100px;
	height:40px;
}

/*------------------------------------------ centering main table thing --------------------------------------------*/
td {
	display:block;
	width:80px;
	height:40px;
}

/*td:hover {
	background-color:azure;
}*/

/*pre:hover {
	display:block;
	width:100px;
	height:40px;
	color:black;
}
a:hover {
	color:black;
}*/

.hugewip {
	display:flex;
	justify-content:center;
	flex-direction:row;
	

}

.minipage {

	/*margin:auto;*/
	padding:112px 0;
	display:flex;
	flex-direction:row;
	justify-content:center;

}

img {
	/*margin:auto;
	display:block;
	margin-left:auto;
	margin-right:auto
	padding:250px 10px;
	position:absolute
	left: 0px:*/
	display:flex;
	float:left;
	padding:135px 0px;
	margin:auto;
}


