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

.container {
    background-color: #111;
    padding: 40px;
    border: 2px solid #00ff00;
    border-radius: 8px;
    box-shadow: 0 0 20px #00ff00;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.title {
    font-size: 24px;
    color: #00ff00;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff00;
}

.message {
    font-size: 18px;
    margin: 10px 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px; /* adds space from above */
    gap: 10px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px; /* adds space above the button */
}

.button {
    padding: 12px 24px;
    background-color: #00ff00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #00ff00;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 0 10px #00ff00;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: #000;
    color: #00ff00;
    box-shadow: 0 0 15px #00ff00;
}

