body {
    background-color: #131313;
    color: #e1e5eb;
    width: 100vw;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
}

.page {
    height: 100vh;
    align-items: center;
    /* cursor: none; */
    display: flex;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
    justify-content: center;
    flex-direction: row;
}

.content {
    text-align: center;
}

#name {
    font-family: "VK Sans Display Regular", "Arial", sans-serif;
    font-size: 60px;
    margin-top: 0;
    text-shadow: 0 0 5px #ccc;
    line-height: 0px;
    animation: ani 4.0s forwards;
}

#main_image {
    pointer-events: none;
    user-select: none;
    width: 200px;
    margin-top: -15%;
    margin-bottom: 0;
}

ul {
    list-style-type: none;
}

.icon {
    padding: none;
    margin: none;
    border: none;
    position: relative;
    height: 40px;
    width: 40px;
    --translateX: 0;
    --translateY: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav {
    margin-bottom: 1em;
    display: grid;
    animation: ani 3.5s forwards;
}

@keyframes ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

li {
    font-size: 1.2em;
    /* cursor: none; */
    display: inline-block;
    padding: 0.5em 0.7em 0.6em 0.6em;
    position: relative;
    text-decoration: none;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
    transition-property: opacity, transform;
}

ul {
    padding: 0;
}

#sound {
    position: absolute;
    /* absolute */
    height: 20px;
    width: 20px;
    bottom: 0;
    left: 0;
    cursor: pointer;
    display: hidden;
    opacity: 1%;
}

#menu {
    position: absolute;
    height: 30px;
    width: 30px;
    top: 10px;
    right: 15px;
    cursor: pointer;
    opacity: 0.2%;
}

img:hover {
    filter: drop-shadow(0 0 2px #ccc);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: rotate(360deg);
}

#twitter:hover {
    content: url('/icons/x.svg');
}

.tiktok-ban-wrap {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.tiktok-ban-wrap .tiktok-link {
  pointer-events: none;
}
.tiktok-ban-wrap .ban-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.7,-0.5,.7,1.5), opacity 0.3s;
  pointer-events: auto;
  user-select: none;
}
.tiktok-ban-wrap .ban-icon.fly {
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--fly-x, 0px), var(--fly-y, 0px)) scale(0.5) rotate(720deg);
}
.tiktok-ban-wrap.unlocked .tiktok-link {
  pointer-events: auto;
}
.tiktok-ban-wrap.unlocked .ban-icon {
  display: none;
}

.tiktok-ban-wrap .tiktok-link .icon {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: width 0.3s, height 0.3s;
}
.tiktok-ban-wrap.unlocked .tiktok-link .icon {
  width: 40px;
  height: 40px;
  position: static;
  transform: none;
  z-index: 1;
}

.tg-plane-fly {
    pointer-events: auto;
    display: block;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    transition: left 0.15s linear, top 0.15s linear, transform 0.15s linear;
}

.tg-plane-wrap {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.tg-plane {
  position: fixed;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  z-index: 1000;
  pointer-events: auto;
  transition: none;
  will-change: transform;
  user-select: none;
}
.tg-plane a {
  display: block;
  width: 100%;
  height: 100%;
}