* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 25px 15px;

  font-family: Arial, sans-serif;
  text-align: center;

  color: #222222;
  background-color: #eeeeee;
}

.contenedor {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 8px;
}

.herramientas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;

  margin: 22px 0;
  padding: 15px;

  background-color: white;
  border-radius: 12px;
}

#selectorColor {
  width: 52px;
  height: 40px;
  cursor: pointer;
}

.paleta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.colorRapido {
  width: 35px;
  height: 35px;
  padding: 0;

  border: 2px solid #222222;
  border-radius: 50%;

  cursor: pointer;
}

.colorRapido:hover {
  transform: scale(1.12);
}

#botonReiniciar,
#botonDescargar {
  padding: 11px 17px;

  border: none;
  border-radius: 8px;

  color: white;
  background-color: #292929;

  font-size: 15px;
  cursor: pointer;
}

#botonReiniciar:hover,
#botonDescargar:hover {
  background-color: #555555;
}

.zonaJuego {
  width: 100%;
  padding: 15px;

  background-color: white;
  border: 3px solid #222222;
  border-radius: 15px;
}

#automovil {
  display: block;
  width: 100%;
  height: auto;
}

.zona {
  fill: #ffffff;
  stroke: #111111;
  stroke-width: 5;

  stroke-linecap: round;
  stroke-linejoin: round;

  cursor: pointer;

  transition:
    fill 0.15s,
    stroke 0.15s,
    stroke-width 0.15s;
}

.zona:hover {
  stroke: #ff8800;
  stroke-width: 8;
}

.zonaSeleccionada {
  stroke: #0066ff;
  stroke-width: 8;
}

.neumatico {
  fill: #222222;
  stroke: #000000;
  stroke-width: 6;
}

.cabinaInterior {
  fill: #333333;
  stroke: #111111;
  stroke-width: 5;
  pointer-events: none;
}

.suspension {
  fill: none;
  stroke: #111111;
  stroke-width: 7;
  stroke-linecap: round;
  pointer-events: none;
}

.lineaCentral {
  stroke: #111111;
  stroke-width: 4;
  stroke-dasharray: 12 8;
  pointer-events: none;
}

.mensaje {
  min-height: 25px;
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 600px) {
  body {
    padding: 15px 7px;
  }

  h1 {
    font-size: 25px;
  }

  .zonaJuego {
    padding: 4px;
  }
}
.volverInicio {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 15px;

  border-radius: 8px;

  color: white;
  background-color: #292929;

  text-decoration: none;
  font-weight: bold;
}

.volverInicio:hover {
  background-color: #555555;
}