body {
    min-height: 100vh;
    margin: 0;
    background: #000000;
    color: #33CCFF;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    background: #000026;
    color: #33CCFF;
    padding: 20px;
    font-size: 30px;
    font-family: "Oxanium", monospace;
    letter-spacing: 3px;
    text-align: center;
    box-sizing: border-box;
    text-shadow: 0 0 6px #33CCFF;
}

.header a {
    color: #33CCFF;
    text-decoration: none;
    margin: 0 12px;
}

.header a:hover {
    text-decoration: underline;
    text-shadow: 0 0 6px #33CCFF;
}


.header-line {    
    position: fixed;
    top: 75px;
    left: 0;
    z-index: 999;

    width: 100%;
    height: 4px;
    background: #0066FF;
    box-shadow:
        0 0 6px #0066FF,
        0 0 12px #0066FF,
        0 0 24px #0066FF;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: 100px;*/
    padding-bottom: 15px; 
}

.footer-line {
    width: 100%;
    height: 4px;
    background: #0066FF;
    box-shadow:
        0 0 6px #0066FF,
        0 0 12px #0066FF,
        0 0 24px #0066FF;
}

.footer {
    background: #000026;
    padding: 16px;
    text-align: center;
    font-size: 12px;
    font-family: "Oxanium", monospace;
    letter-spacing: 1px;
    text-shadow: 0 0 6px #33CCFF;
}

.footer a {
    color: #33CCFF;
    text-decoration: none;
    margin: 0 12px;
}

.footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 6px #33CCFF;
}