html,
/*body {
  width: 100%;
  height: 100%;
}


body {
  position: relative;
  background-color: #ddd;
  overflow: hidden;
}*/


h1 { color:#fff;}

#check { display: none; }

.mainC,
.containerC {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.mainC {
  background-color: #069ef9;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 50;
}

.mainC:hover { background-color: #fff; }

.mainC:active {
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35), inset 1px 2px 2px rgba(0, 0, 0, 0.35);
  background-color: #fff;
}

.mainC .title {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  font-size: 3em;
  line-height: 80px;
  text-align: center;
  /* color: #fff; */
}

.containerC { z-index: 10; }

.plate {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 110px;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35);
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.plate i {
  width: 100%;
  font-size: 2em;
  line-height: 59px;
  text-align: center;
  color: #054666;
}

.plate:hover i { color: #111; }

.plate:nth-of-type(1) {
  background-color: rgba(109, 231, 200, 0.3);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  background: #fff;
}

.plate:nth-of-type(2) {
  background-color: rgba(243, 156, 80, 0.1);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
  background: #fff;
}

.plate:nth-of-type(3) {
  background-color: rgba(247, 80, 173, 0.1);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
  background: #fff;
}

.plate:nth-of-type(4) {
  background-color: rgba(80, 128, 136, 0.5);
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  background: #fff;
}

.plate:nth-of-type(5) {
  background-color: rgba(191, 95, 80, 0.9);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  background: #fff;
}

.plate:nth-of-type(6) {
  background-color: rgba(101, 128, 216, 0.7);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.plate:nth-of-type(7) {
  background-color: rgba(210, 80, 80, 0.2);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.plate:nth-of-type(8) {
  background-color: rgba(114, 89, 202, 0.9);
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

#check:checked ~ .mainC + .containerC .plate { opacity: 1; }

#check:checked ~ .mainC + .containerC .plate:nth-of-type(1) { top: -230%; }

#check:checked ~ .mainC + .containerC .plate:nth-of-type(2) {
 left: -375%;
  right: -130%;
}

#check:checked ~ .mainC + .containerC .plate:nth-of-type(3) { right: -250%; }

#check:checked ~ .mainC + .containerC .plate:nth-of-type(4) {
  right: -150%;
bottom: -230%;
}

#check:checked ~ .mainC + .containerC .plate:nth-of-type(5) { bottom: -240%;
left: -120%;}

#check:checked ~ .mainC + .containerC .plate:nth-of-type(6) {
  bottom: -130%;
  left: -130%;
}

#check:checked ~ .mainC + .containerC .plate:nth-of-type(7) { left: -180%; }

#check:checked ~ .mainC + .containerC .plate:nth-of-type(8) {
  top: -130%;
  left: -130%;
}