body {
    text-align: center;

}

#racetrack {
    background: url('carimages/road.jpg') center left repeat-x;
    height: 300px;
    border-right: dashed 10px white;
    box-sizing: border-box;
    margin: 40px 0;
}

.car {
    display: block;
    position: relative;
}

#car1 {
    top:30px;
    
}
#car2{
    top:100px;
}

#raceInfoContainer {
    width: 80%;
    margin: 0 auto;
    margin-top: 25px;
    background: #333;
    height: 200px;
}
#raceInfoContainer h2 {
    color: white;
    text-transform: uppercase;
    border-bottom: solid 1px white;
    font-family: sans-serif;
    padding: 20px 0;
}

.raceInfo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    width:50%;
    float: left;
    
}

.raceInfo span {
    display: block;
    font-size: 18px;
    font-weight: normal;
    font-family: sans-serif;
    color: white;
}

#raceInfo1 {
    color: #77b82f;
}
#raceInfo2 {
    color: #b82f3e;
}

input [type="button"] {
    background: #77b72f;
    color: white;
    padding: 10px 20px;
    border: solid 1px #444;
    
}

input#go {
    background: #77b72f;
    color: #444;
}
input#reset {
    background: #fc3;
    color: #444;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}