#race {
    text-align: center;
}

#racetrack {
    background-image: url('../img/road.jpg');
    background-position: center;
    background-repeat: repeat-x;
    height: 330px;
    border-right: dashed 10px white;
    box-sizing: border-box;
}

.car {
    display: block;
    position: relative;
}

input[type="button"] {
    padding: 10px 20px;
    margin: 20px 4px 20px;
    background: none;
}
.car {
    position: relative;
}
#car1 {
   top:30px;
}
#car2 {
    top:100px;
}

#raceInfoContainer {
    width: 800px;
    height: 200px;
    margin: 0 auto;
    background-color: #333;    
}

h2 {
    padding: 15px;
    color: white;
    font-size: 30px;
    font-family: sans-serif;
    border-bottom: solid 2px white;
}

.raceInfo {
    width: 50%;
    float: left;
    font-size: 22px;
    font-weight: bold;
}
.raceInfo span {
    margin-top: 10px;
    display: block;
    font-size: 18px;
    color: white;
}
#raceInfo1 {
    color: #77b82f;
}
#raceInfo2 {
color: #b82f3e;
}

#go {
    background-color: #77b82f;
}

#reset {
    background-color: yellow;
}
.clearFix {
    content: "";
    display: table;
    clear: both;
}










