body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}
body {
    background-image: url('jungle-background.jpg'); /* Ensure this image exists in your directory */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}
header {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}
nav {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}
nav a {
    text-decoration: none;
    color: #fff;
    margin: 10px;
}
main {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 70%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.team-list {
    margin: 20px 0;
}
.game-actions, .roles {
    margin-top: 20px;
}
button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
form {
    text-align: center;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Add background to form */
    padding: 20px; /* Add padding to form */
    border-radius: 10px; /* Round corners of form */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Add shadow to form */
}
label {
    font-weight: bold;
    display: block; /* Ensure labels are on their own line */
    margin-bottom: 10px; /* Space between label and input */
}
input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px 0; /* Space at bottom of inputs */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
button[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button[type="submit"]:hover {
    background-color: #0056b3;
}
footer {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: #fff;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    main {
        width: 90%;
    }
}
