main.css 993 Bytes
* {
	font-family: Verdana, sans-serif;
}
.gl {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	width: 200px;
	height: 200px;
	z-index: 2;
}
.text {
	background: white;
	border-style: solid;
	border-color: rgb(100, 190, 12);
	border-radius: 30px;
	border-width: 3px;
	padding: 10px;
}
#content {
	position: absolute;
	box-shadow: 10px 10px 10px black;
	top: 50%;
	left: 50%;
	/* bring your own prefixes */
	transform: translate(-50%, -50%);
	width: 800px;
	z-index: 1;
}
#background {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 1920px;
	height: 1200px;
	background-image: url(../images/background1.jpg);
	padding: 0px;
	margin: 0px;
	z-index: -1;
}
#back {
	position: fixed;
	border-radius: 15px;
	border-width: 2px;
	z-index: 10;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
h1,h4 {
	text-decoration: underline;
}
h1 {
	font-size: x-large;
}
a {
	text-decoration: none;
	color: rgb(110, 210, 12);
}
a:visited {
	color: rgb(60, 130, 12);
}
/* vim: set ts=4 sw=4: */