body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0d0d0d;
    color: #00ffcc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    border: 2px solid #00ffcc;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffcc;
}

header h1 {
    font-size: 3em;
    margin: 0;
    color: #ff00ff;
}

main p {
    font-size: 1.2em;
    margin: 20px 0;
}

a {
    color: #00ffcc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 0.8em;
    color: #666;
}
blockquote {
    border-left: 4px solid #00ffcc;
    padding-left: 10px;
    margin-left: 0;
    color: #555;
    font-style: italic;
}
cite {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #888;
}