*,
*:before,
*:after {
  box-sizing: border-box;
}
.clicker {
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  background: #7eb2f7;
  border-radius: 100%;
  position: absolute;
  transform: scale(0);
  opacity: 1;
  z-index: 999;
  pointer-events: none;
}
.clicker.is-active {
  opacity: 0;
  transition: opacity 400ms ease, transform 400ms ease;
  transform: scale(1);
}
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body {
  background: #f2f2f2;
}



.info {
  background: #fff;
  padding: 1em;
  border-radius: 0.35em;
  box-shadow: 0 0.15em 0.35em rgba(0,0,0,0.1);
  border-top: 0.35em solid #4b9af5;
  width: 100%;
  max-width: 600px;
  margin: 1em auto;
  user-select: none;
  text-align: center;
  transition: all 200ms ease;
  top: 0;
  perspective: 1000;
  min-height: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media screen and (min-width: 480px) {
  .info {
    top: 50%;
  }
}
@media screen and (max-width: 480px) {
  .info {
    min-height: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .mobile-flag {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .desktop-flag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.tap {
  position: relative;
}
.tap:after {
  display: inline-block;
  content: attr(data-click);
}
@media screen and (max-width: 480px) {
  .tap:after {
    content: attr(data-tap);
  }
}
* {
  cursor: default;
}

a:hover {
  color: #6da4ec;
 
}