@import url(reset.css);

body {
	color: white;
	background-color: black;
	font-size: 62.5%; /* Resets 1em to 10px */
	font-family: helvetica, arial, sans-serif;
}

#header {
	position: fixed;
	right: 50px;
	top: 50px;
	-webkit-transform: rotate(-45deg);
}

#header h1 {
	font-weight: normal;
	font-size: 5em;
	text-align: right;
}

#header ul {
	list-style: none;
	font-size: 4em;
	text-align: right;	
	margin: 1em 0;
}

#header ul li a {
	color: white;
	background-color: inherit;
	text-decoration: none;
}

#header ul li a:hover {
	border-bottom: 3px solid #3C7A85;
	text-decoration: none;
}

#car {
	position: fixed;
	bottom: 0;
	width: 100%;
}

#car .mini {
  -webkit-transition-duration: 3s;
}
#car:hover .mini {
  -webkit-transform: translate(110%,0);
}

.mini {
	-webkit-transition-timing-function: ease-in-out;
}
