body {
  background-color: black;
}

.main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.controls {
  height: 80vh;
  width: 15%;
  padding: 1vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.control {
  height: 10vh;
  width: 10vh;
  margin: 5vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.controller:hover {
  cursor: pointer;
}

.frame {
  background-color: white;
  height: 80vh;
  min-width: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.row {
  min-height: 5%;
  min-width: 100%;
  display: flex;
  flex-direction: row;
}

.square {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block {
  height: 80%;
  width: 80%;
  background-color: black;
  border-radius: 0.5vh;
}
