
#preload {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999999999999;
  touch-action:none;
  transition: opacity 0.3s ease
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

.like {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151320;
}

.circles {
  width: 50vmin;
  height: 50vmin;
  position: relative;
  perspective: 50000px;
  color: #960eff;
  filter:drop-shadow(0 0 24px #960eff);
}
.circles span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 18.4%;
  height: 18.4%;
  border-radius: 100%;
  background: currentColor;
}
.circles div {
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 2vmin solid;
  border-top: 2vmin solid transparent;
  border-radius: 100%;
}
.circles div:nth-child(1) {
  -webkit-animation: anim-1 1s linear infinite;
          animation: anim-1 1s linear infinite;
}
.circles div:nth-child(2) {
  -webkit-animation: anim-2 1s linear infinite;
          animation: anim-2 1s linear infinite;
}
.circles div:nth-child(3) {
  -webkit-animation: anim-3 1s linear infinite;
          animation: anim-3 1s linear infinite;
}

@-webkit-keyframes anim-1 {
  from {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes anim-1 {
  from {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
  }
}
@-webkit-keyframes anim-2 {
  from {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
  }
}
@keyframes anim-2 {
  from {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
  }
}
@-webkit-keyframes anim-3 {
  from {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
  }
}
@keyframes anim-3 {
  from {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
  }
}
       #offline-message {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: red;
            color: white;
            text-align: center;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s forwards;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index:101;
        }

        #offline-message .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            margin-right: 10px;
            border-radius: 50%;
            background-color: white;
            color: red;
            font-weight: bold;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        