/* Pixel-Art Schriftart */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', monospace;
    color: #00bfff;

    background: url('terminal_bg.jpg') no-repeat center center fixed;
    background-size: cover;

    height: 100vh;
    overflow: hidden;
}

/* Haupt-Container */
main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    width: 90%;
    max-width: 1000px;
}

/* Überschrift */
main h1 {
    font-size: 1.4em;
    margin-bottom: 25px;
    white-space: nowrap;
    text-shadow: 0 0 10px #00bfff, 0 0 20px #0077ff;
}

/* Unterüberschrift */
main h2 {
    font-size: 1.1em;
    margin-top: 40px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00bfff;
}

/* Text */
main p {
    font-size: 0.9em;
    line-height: 1.6em;
    color: #00bfff;
    text-shadow: 0 0 5px #00bfff;
}

/* Links */
main a {
    color: #00bfff;
    text-decoration: none;
    text-shadow: 0 0 5px #00bfff;
}

main a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

/* Pixel-Art Button */
button,
.credits-btn {
    background-color: #000;
    border: 4px solid #00bfff;
    color: #00bfff;

    font-family: 'Press Start 2P', monospace;
    font-size: 0.9em;

    padding: 12px 30px;
    cursor: pointer;

    transition: 0.2s;
    border-radius: 0;
    box-shadow: 0 0 10px #00bfff;
    margin-top: 40px;
}

button:hover,
.credits-btn:hover {
    background-color: #00bfff;
    color: #000;
    box-shadow: 0 0 20px #00bfff;
}
.source-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.source-list li {
    font-family: 'Press Start 2P', monospace;
    color: #00bfff;
    text-shadow: 0 0 5px #00bfff;
    margin-bottom: 12px;
    font-size: 0.9em;
}

.source-list a {
    color: #00bfff;
    text-decoration: none;
    text-shadow: 0 0 5px #00bfff;
}

.source-list a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

