/* Normalize the padding and margins */
html, 
body, 
div, 
span, 
applet, 
object, 
iframe, 
dl, 
dt, 
dd, 
ul, 
ol, 
li, 
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
pre, 
form, 
fieldset, 
input, 
p, 
blockquote, 
th, 
td, 
img, 
pre,
a, 
abbr, 
acronym, 
address, 
big, 
cite, 
code, 
del, 
dfn, 
em, 
img, 
ins, 
kbd, 
q, 
s, 
samp, 
small, 
strike, 
strong, 
sub, 
sup, 
tt, 
var, 
b, 
u, 
i, 
center,
label, 
legend,
table, 
caption, 
tbody, 
tfoot, 
thead, 
tr, 
th, 
td, 
article, 
aside, 
canvas, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section, 
ummary,
time, 
mark, 
audio, 
video, 
main {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
	
/* HTML5 display-role reset for older browsers */
article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section, 
main {
	display: block;
}
	
/* Normalize font-size for headers */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

/* Remove list-style from lists */
ol,
ul {
	list-style: none;
}
	
/* Display lists inline */
li {
	display: inline;
}

/* Reset line height for everything */
body {
	line-height: 1;
}
	
/* Normalize font-style and font-weight */
address,
caption, 
cite, 
code, 
dfn, 
em, 
strong, 
th, 
var, 
b,
i {
	font-style: normal;
	font-weight: normal;
}

/* Reset blockquotes */
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
	
/* Collapse table borders and padding */	
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Include padding and border in width and height */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}
	
/* Left align text in caption and th */
caption,
th {
	text-align: left;
	}
	
/* Reset bold and italic */

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

em strong,
strong em {
	font-style: italic;
	font-weight: bold;
}

.clearfloats {
	clear: both;
}
		
/* UNIVERSAL */

html,
body {
	color: #eee;
	font-family: proxima-nova, Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: #222;
    background: url(../images/carfade.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

#splash {
    text-align: center;
    
}

#content {
    width: 94%;
    max-width: 1000px;
    margin:  0 auto;
    padding: 0 3% 150px 3%;
}

#logo {
    padding: 20px 0 0 0;
    margin: 0 0 50px 0;
}

h1 {
    font-size: 200%;
    margin: 0 0 20px 0;
    letter-spacing: .1em;
}

h2 {
    font-size: 130%;
    margin: 30px 0 20px 0;
    letter-spacing: .1em;
}

p {
    font-size: 110%;
    line-height: 1.4;
    margin-bottom: 15px;
}

a {
    color: #222;
    text-decoration: none;    
}

a:hover {
    color: #aaa;
}

a#yourride {
    display: block;
    background: #eee;
    width: 300px;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    color: #222;
    line-height: 1.4;
    padding: 10px;
    font-size: 100%;
    letter-spacing: .1em;
}

a#yourride:hover {
    background: #777;
    color: #eee;
}

footer {
    background: #eee;
    color: #222;
    width: 100%;
    text-align: center;
    padding: 25px 0 10px 0;
    letter-spacing: .1em;
    text-transform: uppercase;
    grid-row-start: 2;
    grid-row-end: 3;
}

#contact {
    margin: 0 0 10px 0;
    font-size: 120%;
    font-weight: 600; 
}

#copyright {
    font-size: 110%;
}

@media screen and (min-height: 576px) {
    
    #logo {
    padding: 70px 0 0 0;
}
    
    #content {
    padding-bottom: 120px;
}
    
}