*{
  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;
}
/* ----------------------- */
.full{
}
.topright{
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.bottomleft{
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
/* --------------------- */
.color0{background-color: transparent;}
.colorwhite{background-color: white;}