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

h1 {
    text-align: center;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

h2 {
    color: #00ff00;
    margin-top: 20px;
}

p {
    color: #fff;
    margin-bottom: 10px;
}

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

p a:hover {
    text-decoration: underline;
}

