body {
    background-color: rgb(10, 10, 10);
    color: whitesmoke;
    text-align: justify;
    font-family: consolas, monospace;
    animation: textshadow 1s infinite alternate;
    text-shadow: 0 0 10px whitesmoke;
}
.span::before {
    content: "";
    font-size: 29px;
    animation: animacja 1s infinite linear alternate;
    color: whitesmoke;
    text-shadow: 0 0 10px #000000;
}
@keyframes animacja {
    from {
        content: "_";
        text-shadow: 0 0 10px white;
    }
    to {
        text-shadow: 0 0 10px black;
        content: "";
    }
}
#write {
    font-size: 29px;
    text-shadow: 0 0 10px white;
}
.write {
    font-size: 29px;
    text-shadow: 0 0 10px white;
}
a {
    text-decoration: none;
    color: #6d57ff;
    text-shadow: 0 0 10px #6d57ff;
    transition: ease-in 0.2s;
}

@keyframes linieskanu {
    0% {
      opacity: 0.5;
    }
    50% {
      opacity: 0.8;
      background-position-y: 100px;
    }
  }
  
  .scanlines {
    pointer-events: none;
    animation: 0.2s normal linieskanu infinite;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6));
    background-size: 100% 0.35rem;
    z-index: 10000;
  }
  #spam {
    display: none;
    font-size: 29px;
    color: whitesmoke;
    text-shadow: 0 0 10px white;
}
#bigos {
    display: none;
}