.buttons {
    font-family: "Courier New", Courier, monospace;
  }
  body {
    display: flex;
  }
  .buttons {
    font-size: 0.8em;
  }
  h1,
  .buttons {
    z-index: 1;
  }
  body {
    flex-direction: column;
  }
  body {
    align-items: center;
  }
  [class~="drop"],
  [class~="rain"] {
    position: absolute;
  }
  [class~="buttons"] a {
    text-decoration: underline;
  }
  [class~="buttons"] a {
    margin-left: 7.5pt;
  }
  [class~="buttons"] a {
    margin-bottom: 0;
  }
  [class~="buttons"] a {
    margin-right: 7.5pt;
  }
  body {
    justify-content: center;
  }
  body {
    height: 100vh;
  }
  [class~="rain"] {
    top: 0;
  }
  [class~="rain"] {
    left: 0;
  }
  [class~="buttons"] a {
    margin-top: 0;
  }
  [class~="buttons"] a,
  body {
    color: white;
  }
  [class~="rain"] {
    width: 100%;
  }
  [class~="rain"] {
    height: 100%;
  }
  [class~="rain"] {
    z-index: 0;
  }
  body,
  [class~="rain"] {
    overflow: hidden;
  }
  [class~="buttons"] a {
    text-decoration-color: white;
  }
  [class~="drop"] {
    width: 0.125pc;
  }
  [class~="buttons"] a {
    text-underline-offset: 0.1875pc;
  }
  [class~="drop"] {
    height: 7.5pt;
  }
  [class~="drop"] {
    background-color: white;
  }
  [class~="drop"] {
    animation: rain 1s linear infinite;
  }
  body {
    background-color: black;
  }
  body {
    font-family: Arial, sans-serif;
  }
  body {
    position: relative;
  }
  h1 {
    font-weight: bold;
  }
  h1 {
    font-size: 2em;
  }
  h1 {
    margin-bottom: 1.25pc;
  }
  @keyframes rain {
    0% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(100vh);
    }
  }
  * {
    margin: 0;
    padding: 0;
  }
  
  :root {
    --thunder-duration: 10s;
    --thunder-delay: 5s;
  }
  
  body {
    background-image: linear-gradient(to bottom, #030420, #000000 70%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  hr.thunder {
    border: unset;
    position: absolute;
    animation-name: thunder;
    animation-duration: var(--thunder-duration);
    animation-timing-function: linear;
    animation-delay: var(--thunder-delay);
    animation-iteration-count: infinite;
  }
  
  hr:not(.thunder) {
    border-color: transparent;
    border-right-color: rgba(255, 255, 255, 0.7);
    border-right-width: 50px;
    position: absolute;
    bottom: 100%;
    width:fit-content;
    height: auto;
    transform-origin: 100% 50%;
    animation-name: rain;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  @keyframes rain {
    from {
      transform: rotate(105deg) translateX(0);
    }
    to {
      transform: rotate(105deg) translateX(calc(100vh + 20px));
    }
  }
  
  @keyframes thunder {
    0% {
      background-color: transparent;
    }
    1% {
      background-color: white;
    }
    2% {
      background-color: rgba(255, 255, 255, 0.8);
    }
    8% {
      background-color: transparent;
    }
  }
  