html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, 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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 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 {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
	font-family:Arial, Helvetica, sans-serif;
	user-select:none;
    overflow-x:hidden;
    background-color:rgb(243, 243, 243);
}

form{
    background-color:white;
    width:60%;
    margin:auto;
    margin-top:20px;
    margin-bottom:20px;
    padding:10px;
    box-shadow:0px 0px 3px 3px rgb(218, 218, 218);
    border-radius:5px;
}

h1{
    text-align:center;
    font-size:55px;
    font-weight:bold;
    margin-top:20px;
}

h2{
    font-weight:bold;
    font-size:16px;
}

hr{
    border:none;
    background-color:black;
    height:3px;
    width:10%;
}

.cars{
    background-color:rgb(247, 247, 247);
    border-radius:10px;
    border: solid rgb(0, 0, 0) 3px;
    display: inline-block;
    width: 16vh;
    height: 17vh;
	margin:10px 0px 10px 0px;
	text-align:center;
	transition:.2s;
	vertical-align:middle;
	padding-top:2vh;
}

.cars:hover{
	transform:scale(1.02);
    background-color:rgb(216, 216, 216);
	cursor:pointer;
}

.tiles{
	text-align:center;
	margin-top:20px;
}

.tiles input[type=checkbox]{
	position:absolute;
	margin-left:7.5vh;
	margin-top:21vh;
}

.tiles input[type=checkbox]:checked + .cars{
    background-color: rgb(150, 150, 150);
}

img{
	width:100%;
	height:110px;
}

#formInfo{
    margin:auto;
    width:25%;
}

#formInfo label{
    font-size:18px;
}

#formInfo input:not(#submit){
    margin-top:3px;
    width:100%;
    height:30px;
    border-radius:5px;
    border:solid black 2px;
}

#centering{
    width:100%;
    text-align:center;
}

#submit{
    height:28px;
    width:40%;
    margin:10px 0px 10px 0px;
    cursor:pointer;
}