* {
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 0px;
  margin: 0px;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 901px) {
  body {
    flex-direction: row;
  }
}
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }
}
#blockContainer {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  position: absolute;
  pointer-events: none;
}
#blockContainer1 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  pointer-events: none;
}
#canvas {
  width: 100vw;
  height: 100vh;
}

/* fake button */
#fake-button-container {
  width: 100vw;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  gap: 20px;
}
.fake-button-class {
  cursor: pointer;
  background-color: rgb(49, 49, 49);
  color: rgb(255, 255, 255);
  border: none;
  font-size: 1em;
}
/* real button */
.imageInputClass {
  display: none;
}
