*{
  box-sizing:border-box;
}
html, body {
  height: 100%;
  width: 100%;
}
body {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-content:center;
  background-color: lightslategray;
  box-sizing:border-box;
  height: 100%;
}
.container {
  width: 100%;

  height: 100%;
  overflow:hidden ;
}
.etchContainer {
  text-align: center;
  font-size: 200%;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
}
.controls{
  position: fixed; 
  top: 0.5em;
  width: 100%;
  display: flex;
  padding: 0 20vw;
  align-items: center;
  justify-content: center;
}

.mouseDisabled {
  pointer-events: none;
}

.controls>* {
  margin: 0 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 auto;
  height: 1.25em;
  max-width: 5em;
  padding: 0.3vh 1vh;
  font-size: 1em;
}

.controls>*:hover {
  cursor: pointer ;
}

.controlButton {
  background-color:rgb(223, 223, 223);
  border: solid .1vh black;
}

.title {
  position: absolute;
  width: 10%;
  top: 0;
  text-align: center; 
  color: white;
  text-shadow: 1px 1px 2px  black, -1px -1px 2px black, 1px -1px 2px black, -1px 1px 2px black;
  font-weight:bolder;
  z-index: 5;
}


.gridItem{
  background-color: white; 
}
.colorBackground {
  --etchColor: hsl(1, 100%, 50%);
  background-color: var(--etchColor);
}
