* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  position: relative;
  overflow: hidden;
}
body {
  background-image: url("../img/back.png");
  background-size: 100% 100%;
}
#container {
  position: relative;
  border-radius: 100%;
}
.main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.word {
  position: absolute;
  top: 50%;
  transform: translate(10px, -50%);
}
.item {
  position: absolute;
  transform-origin: 100% 50%;
  background: #333;
  pointer-events: none;
}
.itme-ctx {
  position: absolute;
  transform-origin: 100% 50%;
  display: flex;
  align-items: center;
  z-index: 100;
}
.itme-ctx span {
  position: absolute;
  top: -30px;
  left: 32px;
  font-size: 24px;
}
.itme-ctx .circle {
  position: absolute;
  width: 35%;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  animation: scale 2s linear infinite;
  transform: scale(0);
}
.icon {
  position: absolute;
  width: 27%;
  border-radius: 50%;
  right: 4%;
  animation: scale 2s linear infinite;
  transform: scale(0);
}
@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}
.logo {
  position: absolute;
  right: 10px;
  top: 25px;
  width: 240px;
  display: block;
  pointer-events: none;
}
.footer {
  position: absolute;
  right: -3px;
  bottom: 0px;
  width: 530px;
  display: block;
  pointer-events: none;
}
.line {
  display: block;
  width: 65%;
  pointer-events: none;
}
