html {
    background-image: radial-gradient( #424242, black);
    background-attachment: fixed;
    cursor: crosshair;
}

@font-face {
    font-family:font2;
    src: url("fonts/Dotrix.ttf");
    font-style:normal;
}

::-moz-selection { /* Code for Firefox */
  color: #000000;
  background: #c9889f;
}

::selection {
  color: #000000;
  background: #c9889f;
}

::-webkit-scrollbar {
  width: 0;
  background: hidden;
}

::-webkit-scrollbar-thumb {
  background: hide; 
  border-radius: 10px;
}

.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, 
  rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06),
  rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.10626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.10626;
  }
  30% {
  opacity: 0.18128;
  }
  35% {
  opacity: 0.23604;
  }
}
.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

#fart {
    display: flexbox;
    text-align: center;
    justify-content: center;
    margin: auto;
    margin-top: 75px;
    height: 550px;
    width: 1000px;
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 50px;
    border: ridge;
    border-width: 5px;
    border-color: #a14d6b;
}

.shrines {
    display: flexbox;
    justify-content: center;
    border-radius: 90px;
    overflow: auto;
    height: 405px;
    font-size: larger;
    font-family: font2;
    color: #ffffff;
}

img {
    filter: hue-rotate(-18deg) blur(0.7px) contrast(0.8);
}

a {
    text-decoration: underline;
    cursor: crosshair;
    color: #ffffff;
}

a:hover img {
    filter: none;
}