body {
    background-color: #000000;
    color: #DDDDDD;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 20px;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #FFFFFF;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    display: block;
    width: 60%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
}

button {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #333333;
    border-color: #AAAAAA;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

button:hover a {
    color: #DDDDDD;
}