::-webkit-scrollbar {
    display: none;
  }
  
  @font-face {
      font-family: mono;
      src: url(mono.ttf); 
    }
    @font-face {
      font-family: derk;
      src: url(derk.otf);
    }
      html {
      font-family: mono;
    }
    *, *::after, *::before {
      box-sizing: inherit;
      margin: 0;
      padding: 0;
    }
    body {
      background: rgb(17, 17, 17);
    }
    #overlay-toggle {
      position:absolute;
      display: none;
    }
    .debold{
      font-weight:normal
    }
    .back {
    width: 100%;
    }
   .fix101 {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .test-fix {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .overlay {
      z-index: 1;
      background-color: black;
    }
    .overlay label {
      display: grid;
      place-items: center;
      width: 100vw;
      height: 100vw;
      color: rgb(255, 255, 255);
      font-size: 2rem;
    }
    .text-content a:hover {
      opacity: 0.8;
    }
    .no-hover {
      display: block;
    }
    .hover {
      display: none;
    }
    .fullscreen {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-height: 100vh;
      min-width: 100vw;
    }
    .text-content {
      background: rgba(0, 0, 0, 0);
      display: grid;
      place-content: center;
      text-align: center;
      color: rgb(255, 255, 255);
    }
    .text-content h1 {
      font-size: 3rem;
      font-weight: 800;
    }
    .text-content p {
      padding-top: 30px;
      padding-right: 10px;
      padding-bottom: 31px;
      padding-left: 10px;
      font-size: 1.7rem;
      font-weight: 500;
      line-height: 0.0;
      color: rgb(192, 192, 192);
      display: flex;
    }
    .text-content a {
      padding-top: 30px;
      padding-right: 10px;
      padding-bottom: 31px;
      padding-left: 10px;
      font-size: 1.3rem;
      line-height: 0.0;
      color: #cccccc;
      display: block;
      text-align: center;
    }
    #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;
    }
    @media(hover: hover) {
      .hover {
        display: block;
      }
      .no-hover {
        display: none;
      }
    }
    @keyframes fade{
      to {
        opacity: 0;
      }
    }
    @keyframes hide {
      to {
        visibility: hidden;
      }
    }
  body{
      margin: 0;
      padding: 0;
      background-video: url(Dogs.mp4);
      background-size: cover;
  }
  .rain{
      height: 100vh;
      background-image: url(rain.png);
      animation: rain 0.4s linear infinite;
  }
  @keyframes rain{
      0%{
          background-position: 0% 0%;
      }
      100%{
          background-position: 20% 100%;
      }
  }
  .rain::before{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url(lightining.png);
      top: -100px;
      transform: rotate(180deg);
      animation: lightining 4s linear infinite;
      opacity: 1;
  }
  @keyframes lightining{
      0%{
          opacity: 0;
      }
      20%{
          opacity: 0;
      }
      21%{
          opacity: 1;
      }
      25%{
          opacity: 0;
      }
      30%{
          opacity: 0;
      }
      31%{
          opacity: 1;
      }
      35%{
          opacity: 0;
      }
      100%{
          opacity: 0;
      }
  }
  .glitchy{
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-height: 100vh;
      min-width: 100vw;
  }