html{
    height: 100%;
}

body{
    background: radial-gradient(ellipse at center, #201100, #101010);
    font-family: Quantico;
    color: orange;
    text-align: center;
    background-size: 100% 100%;
    background-attachment:fixed;
}

a{
    color: inherit;
    text-decoration: none;
}

a:hover{
    color: white;
}

p::selection,a::selection,h1::selection,h3::selection {
    background: darkorange;
    color: white;
}

li{
    padding: 5px;
}

.ascii-art{
    text-align: left;
}

.ascii-div{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.content{
    width: 60%;
    padding: 10px;
    border: 3px dashed orange;
}
/* scanlines effect I found online */
.crt::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 8px;
    z-index: 2;
    pointer-events: none;
}

.scanline {
    width: 99%;
    height: 100px;
    z-index: 8;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.2) 10%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 10s linear infinite;

}

@keyframes scanline {
    0% {
        bottom: 100%;
    }
    80% {
        bottom: 100%;
    }
    100% {
        bottom: 0%;
    }
}
  