
body {
    font-family: Arial, sans-serif;
    color:  white;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; /* Full viewport height */
    background-image: url('images/zzz.jpg');
    background-size: cover; /* Ensure the image covers the whole element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Don't repeat the image */
}

header {
    background: transparent;
    color: #00f7ff;
    padding: 10px 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ff0000;
    text-decoration: none;
}

main {
    padding: 20px;
}

.game {
    background: #02ccff00;
    border: 1px solid #ffffff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
}

button {
    background: #1bf0ff;
    color: #ff0404;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background: #00e4f5;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #e00909f1;
    color: #e5ff00;
}

/* New styles for the form */
form {
    margin-top: 20px;
}

form input {
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #ff0000;
    border-radius: 4px;
}

