body {
    background: #000000;
    color: #00aa00;
    font-family: "Courier New", monospace;
    margin: 20px;
    line-height: 1.3;
}

.logo {
    text-align: left;
    margin-bottom: 20px;
}

.logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.blink {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

pre {
    white-space: pre-wrap;
    margin: 0;
}