html {
    font-size: 16px;
    font-family: "Google Sans Code", monospace;
    background: rgb(36, 36, 36);
}

h1 {
    padding-top: 100px;
    font-size: 60px;
    text-align: center;
    text-shadow: 2px 2px 4px white;
}

h2 {
    margin: 0px 0px 0 50px;
}

h3 {
    margin: 0px 0px 0 90px;
}

.content {
    position: relative;
    z-index: 20;
    padding: 2rem;
    text-align: center;
    font-size: 2rem;
}

i {
    margin-bottom: 60px;
    font-size: 18px;
    display: block;
    width: 100%;
    text-align: center;
}

li {
    margin: 0px 0px 0 100px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 60%;
    z-index: 20;
}

p {
    margin: 16px 0px 16px 160px;
    font-size: 15px;
    display: block;
    width: 100%;
}

body {
    margin: 0 auto;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    size: 100%;
    top: -2px; left: 0; right: 0; bottom: 0px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0px,
        rgba(0,0,0,0.1) 2px,
        transparent 2px,
        transparent 4px
    );
    animation: moveScan 1s linear infinite;
    pointer-events: none;
    z-index: 10;
}

body::after {
    content: "";
    position: fixed;
    top: 0px; left: 0; right: 0; bottom: 0px;
    background: radial-gradient(
        rgba(255,255,255,0.16),
        transparent
    );
    pointer-events: none;
    z-index: 1;
}

@keyframes moveScan {
    from {background-position: 0, 0;}
    to {background-position: 0 4px;}
}

