body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: #00FF00;
    font-family: "Courier New", Courier, monospace;
}

.container {
    text-align: center;
}

.links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

links li {
    margin: 10px 0;
}

.links a {
    color: #00FF00;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #00cc00;
}

.links i {
    margin-right: 8px;
}

