body {
	background-color: white;
	margin:0;
	padding:0;
}
.container {
	margin:0;
	padding:0 0 1vw 0;
	padding:0 0 1ch 0;
	font-family: nobel, sans-serif, monospace;
	font-family: "Lidberg Regular Font", nobel, Times, Verdana, monospace;
	font-size:4vw;
	ont-size:35ch;
	letter-spacing: 0.2vw;
	font-weight: normal;
	text-align: center;
	-webkit-font-smoothing: subpixel-antialiased;
	
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
a {
	color: black;
	background-color: white;
	
	padding: 0 1vw 0 1vw;
	text-decoration: none;
	border-style: none none none none;
	outline: 0;
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}	
a:visited {
	color: black;
	background-color: white;
}
a:hover {
	color: white;
	background-color: #ff3301;
}