body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000; /* Galaga black background */
    color: #fff; /* White text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #000; /* Match the background color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* Galaga cyan shadow */
    width: 800px;
    text-align: center; /* Center text */
}

h1, h2 {
    color: #0ff; /* Galaga cyan */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: #fff; /* White text for table */
}

th, td {
    padding: 10px;
    border: 1px solid #0ff; /* Galaga cyan border */
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive;
    background-color: #000;
    color: #fff;
    border: 1px solid #0ff; /* Galaga cyan border */
}

button {
    padding: 10px 20px;
    background-color: #0ff; /* Galaga cyan */
    color: #000; /* Black text color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
}

button:hover {
    background-color: #00ffff; /* Lighter cyan */
}
