* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#carSelect {
  margin-top: 12px;
  font-family: sans-serif;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #999;
  background: #fff;
}

#details {
  margin: 12px 0;
  font-family: sans-serif;
  font-size: 18px;
}

#gameCanvas {
  display: block;
  width: min(95vw, 1200px);
  height: auto;
  background: linear-gradient(#dfefff, #cfe0ff);
  border: 2px solid #222;
  border-radius: 12px;
}
