#car
{
  display:flex;
  flex-direction:column;
}
#window
{
  height:200px;
  width:550px;
  background:skyblue;
  border-bottom:1px solid black;
}
#dpshr
{
  display:flex;
}
#dashboardAndPedals
{
  display:flex;
  flex-direction:column;
}
#dashboard
{
  height:150px;
  width:400px;
  background:darkgrey;
  display:flex;
  
  align-items:center;
  justify-content:space-around;
}
#speed
{
  height:35%;
  width:25%;
  border:1px solid black;
}
#fuel
{
  height:35%;
  width:25%;
  border:1px solid black;
}
#pedals
{
  height:200px;
  width:400px;
  background:darkgrey;
  display:flex;
  
  justify-content:space-around;
  
}
#accelCol,#brakeCol,#clutchCol
{
  display:flex;
  background:darkgrey;
  flex-direction:column;
  height:100%;
  width:33%;
  justify-content:flex-end;
  align-items:center;
  border:1px solid black;
}
#accel
{
  position:relative;
  height:35%;
  width:20%;
  background:grey;
  border:1px solid black;
  bottom:10px;
}
#brake
{
  height:15%;
  width:60%;
  background:grey;
  margin-bottom:30px;
  border:1px solid black;
}
#clutch
{
  position:relative;
  
  height:35%;
  width:20%;
  background:grey;
  border:1px solid black;
  bottom:10px;
}
#radio
{
  width:150px;
  height:150px;
  max-width:150px;
}

#shiftBase
{
  position:relative;
  display:flex;
  justify-content:center;
  top:-60px;
}
#shifter
{
  width:150px;
  height:200px;
  background:grey;
}
#shiftKnob
{
  
}
#wheel
{
  position:relative;
  bottom:300px;
  left:108px;
  width:184px;
  
}
