body {
  background-color: lime;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.main {
  display: flex;
  flex-direction: row;
}

.display {
  height: 90vh;
  width: 90vh;
  display: flex;
  flex-wrap: wrap;
}

.control {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10vh;
}

button {
  height: 10vh;
  width: 10vh;
  border: 0.5vh solid black;
  margin: 1vh;
  border-radius: 50%;
  transition: all 0.2s;
  background-color: blue;
  font-size: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.direction {
  height: 2vh;
  width: 4vh;
  background-color: white;
}

.spotContainer {
  position: relative;
  height: 8vh;
  width: 8vh;
}

.spot {
  border-radius: 50%;
  position: relative;
  left: 0.5vh;
  bottom: 9.5vh;
}

.firstShadow {
  border-radius: 50%;
  position: relative;
}

.secondShadow {
  border-radius: 50%;
  position: relative;
  left: 1vh;
  bottom: 4vh;
}
