html body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  /* background: rgb(197, 198, 199) */
  background-image: url('1561091.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

body {
  display: flex;
  justify-content: center;
  min-width: 100vh;
  min-height: 100vh;
}

.app-all {
  padding: 30px 0;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-title {
  font-size: 30px;
  /* -webkit-text-stroke: 1px #fff; */
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
}

.main-canvas-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

#canvas {
  background: #fff;
  width: 1200px;
  height: 500px
}

.canvas-label {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.controls-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

.controls-column,
.stats-column {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.run-info {
  display: flex;
  flex-direction: column;
  background: rgb(10,28,50);
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 20px;
}

.run-metric-label {
  font-weight: 400;
}

.instructions {
  display: flex;
  flex-direction: column;
  background: rgb(10,28,50);
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 20px;
}

.instructions-label {
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
}

.instructions li {
  margin-bottom: 5px;
}

.background {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* border: 1px solid purple; */
  background: rgb(10,28,50);
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #fff;
  margin: 10px;
  font-size: 16px;
  line-height: 20px;
  max-width: 1180px;
}

.background p {
  margin: 5px;
}

.background-title {
  font-size: 19px;
  /* line-height: 28px; */
  font-weight: 400;
}

.background-paragraph {
  margin-top: 10px;
}