video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(0,0,0,9);
  }
  
  .video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
  }
  
  .video-container video {
    min-width: 100%; 
    min-height: 100%; 
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .vidoverlay {
    position: fixed;
    mix-blend-mode: screen;
    opacity: 50%;
  }
  
  html {
    font-family: monospace;
  }
  
  *, *::after, *::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    cursor: crosshair;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .Planet Kosmos {
    font-family: "Graffiti", sans-serif
  }
  
  #overlay-toggle {
    position:fixed;
    display: none;
  }
  
  .overlay {
    z-index: 1;
    background-color: #0f0f0f;
  }
  
  .overlay label {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vw;
    color: rgb(255, 255, 255);
    font-size: 2rem;
  }
  
  .no-hover {
    display: block;
  }
  
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }
  
  body {
    font-family:monospace!important;
    background-color:#0f0f0f!important;
    color:#fff!important
  }
  
  .hover {
    text-decoration:none;
    color:rgb(250, 250, 250)!important;
    transition:.4s!important;
  }
  
  .hover:hover {
    transition:.6s!important;
      color:rgb(155, 155, 155)!important;
    stroke: yellow;
  }
  
  span::before {
    content:'\A';
    white-space:pre
  }
  
  #center {
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%)
  }
  
  #overlay-toggle:checked ~ .overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 600ms;
    animation-duration: 600ms, 1ms;
  }
  
  #overlay-toggle:checked ~ .overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 500ms;
  }
  
  #canvas-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
  }
  
  @font-face {
    font-family: "Graffiti";
    src: url(./font.ttf);
  }
  
  @media(hover: hover) {
    .overlayhover {
      display: block;
    }
    .overlayno-hover {
      display: none;
    }
  }
  
  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }
  .avatar {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 100%;
    border: 0px solid #1f202038;
  
  }
  .badge {
      height: 17px
  }
  
  .profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      margin-top: 50px;
      width: 80%;
  }
  
  .tooltip {
      position: relative;
      display: inline-block
  }
  
  .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 150%;
      left: 50%;
      margin-left: -63px;
      transform: scale(0);
      transition: ease-in-out 150ms
  }
  
  .tooltip:hover .tooltiptext {
      visibility: visible;
      transform: scale(1)
  }

  .animated {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  .animatedfast {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  .animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }
  
  .animated.flipOutX,
  .animated.flipOutY,
  .animated.bounceIn,
  .animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
  }
  
  @-webkit-keyframes swing {
    50% {
      -webkit-transform: rotate3d(0, 0, 1, -6deg);
      transform: rotate3d(0, 0, 1, -6deg);
    }
  
    to {
      -webkit-transform: rotate3d(0, 0, 1, 6deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  
  @keyframes swing {
    50% {
      -webkit-transform: rotate3d(0, 0, 1, -6deg);
      transform: rotate3d(0, 0, 1, -6deg);
    }
  
    to {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  
  .swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
  }
  
  .hanginggirl {
    margin-top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden !important;
    max-height: 400px;
    filter: grayscale(1) contrast(200%);
  }
  
  .spoiler {
    background-color: white;
    color: white;
  }
  
  .spoiler:hover {
    background-color: black;
  }



* {
    cursor: url(https://vxmap.pages.dev/assets/oth.cur), auto !important;
}