.mytable {
	display: table;
}

.myTR {
	display: table-row;
}
	

.myTD {
	display: table-cell;
	padding: 50px;
}

body {
	font-family: "Courier New", Courier, monospace;
	color: lime;
	background-color: black;
	background-image: url("darkerglobe.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	}

.center {
	text-align: center;
	}
a {
	color: lime;
	text-decoration: bold;
	}
a:hover {
	text-decoration: bold;
	text-shadow: 1px 1px #00ff00;
	}
a:visited {
	text-decoration: italic;
	}
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
	.mytable {
		display: table;
	}

	.myTR {
		display: block;
	}
		

	.myTD {
		display: block;
	}

        }
}
