#container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.box {
  height: 100px;
  width: 250px;
  margin: 5px;
  background-color: grey;
  box-shadow: black 3px 3px 5px;
  border-radius: 50px;
}

.box-a {
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
}

.box-b {
  display: flex;
  align-items: center;
}

.circle {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  margin-left: 20px;
  box-shadow: inset 2px 2px 5px black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps {
  margin-left: 15px;
  text-align: left;
}

.box-c {
  display: flex;
  align-items: center;
}

.pink {
  background: pink;
}

.blue {
  background: cyan;
}