<head>
  <style>
    html {
      font-family: 'Montserrat', sans-serif;
      font-family: 'Roboto Mono', monospace
    }

    *, *::after, *::before {
      margin: 0;
      padding: 0
    }

    body {
      display: grid;
      place-items: center;
      height: 100vh;
      background: #000
    }

    shader-art {
      display: block;
      width: 100vw;
      height: 100vh
    }
      
    shader-art canvas {
      display: block;
      width: 100%;
      height: 100%
    }

    #overlay-toggle {
      display: none
    }

    .overlay {
      z-index: 1;
      background-color: #000
    }

    .overlay label {
      display: grid;
      place-items: center;
      width: 100vw;
      height: 100vh;
      color: #fff;
      font-family: 'Roboto Mono', monospace;
      font-size: 1.2rem
    }

    .fullscreen {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-height: 100vh;
      min-width: 100vw
    }

    .text-content {
      background: transparent;
      display: grid;
      place-content: center;
      text-align: center;
    }

    .text-content h1 {
      color: #fff;
      font-family: 'Monsterrat', sans-serif;
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 4px rgba(255, 255, 255, 0.5), 0 0 6px rgba(255, 255, 255, 0.5), 0 0 8px rgba(255, 255, 255, 0.5);
      font-size: 3rem;
      font-weight: 800;
    }

    .text-content a {
      transition: 0.5s;
      padding-top: 30px;
      padding-right: 10px;
      padding-bottom: 30px;
      padding-left: 10px;
      line-height: 0;
      color: #ccc;
      font-family: 'Roboto Mono', monospace;
      text-decoration: none;
      font-size: 1.2rem
    }

    .text-content a:hover {
      transition: 0.5s;
      color: #fff;
      text-shadow: 0 0 0.40em #fff
    }

    .socials {
      display: flex;
      align-items: center;
      justify-content: 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
    }

    @keyframes fade {
      to {
          opacity: 0
      }
    }

    @keyframes hide {
      to {
          visibility: hidden
      }
    }

    body {
      background-image: url('durk.gif');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
    }
  </style>
</head>
