*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.global{
  width: 80vmin;
  height: 80vmin;
  position: relative;
}
.containerone{
  width: 80vmin;
  height: 80vmin;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.containerone > div{
  width: 4vmin;
  height: 4vmin;
  flex: 0 0 auto;
}

.containertwo{
  width: 80vmin;
  height: 80vmin;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.containertwo > div{
  width: 8vmin;
  height: 8vmin;
  flex: 0 0 auto;
}

.containerthree{
  width: 80vmin;
  height: 80vmin;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.containerthree > div{
  width: 4vmin;
  height: 4vmin;
  flex: 0 0 auto;
}
/* ----------------------- */
.full{
}
.threecircle{
  border-radius: 50%;
  background-color: red;
}
/* --------------------- */
.color0{background-color: transparent;}
.colorwhite{background-color: white;}