body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: "Courier New", monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    border: 2px solid #00ff00;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(0, 50, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    margin-top: 30px;
    max-width: 600px;
}

img {
    filter: drop-shadow(0 0 10px #00ff00);
}

h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: left;
}

strong {
    color: #ffffff;
}

footer {
    margin-top: auto;
}