body {
    background-color: rgba(0, 0, 0, 0);
    background-image: url("./Images/Data-Center.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    backdrop-filter: blur(5px);
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

canvas {
    display: block;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hackerMan {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -2;
}

.inner-shadow-2 {
    box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.5);
}

.text-shadow-2 {
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
}

.letter-spacing-2 {
    letter-spacing: 2rem;
}

.word-spacing-2 {
    word-spacing: 10rem;
}

@keyframes colorCycle {
    0% { color: rgb(255, 255, 255); }
    25% { color: rgb(0, 255, 0); }
    50% { color: rgb(0, 0, 255); }
    75% { color: rgb(255, 255, 0); }
    100% { color: rgb(255, 255, 255); }
}

.rgb-text {
    animation: colorCycle 5s linear infinite;
}

#seal {
    position: fixed;
    bottom: 20px;
    left: 0px;
    width: 200px;
    animation: flyAcross 30s linear infinite;
}

@keyframes flyAcross {
    0%, 50% { transform: translateX(-100%); }
    51%, 60% { transform: translateX(100%); }
    61%, 100% { transform: translateX(-100%); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: black; }
}

.code-writing {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #33ff33;
    overflow: hidden;
    white-space: break-spaces;
    margin: 0 auto;
    border-right: .15em solid black; /* The caret */
    width: 24em;
    animation: typing 30s steps(1000, end), blinkCaret 0.75s step-end infinite;
}

.code-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    content: '';
    display: block;
    overflow: hidden;
}

.code-background .code-writing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}