body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: rgb(79, 64, 47);
  margin: 0;
  padding: 0;
  height: 100%;
}

.full-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  height: 800px;
  width: 1200px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 20px;
}

h1 {
  text-align: center;
}

.wheel {
  display: flex;
  flex-direction: column;

  .wheel-field {
    display: flex;

    .wheel-field-label {
      width: 3rem;
    }

    .wheel-field-value {
      margin-left: 1rem;
    }

    .solution {
      width: 2rem;
      margin: 0 4px;
      text-align: center;
      background: green;
    }
  }

}

.solution {

}


