/* Reset margin and padding for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set a font family for the whole page */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Center the title */
h1 {
    text-align: center;
}

/* Section styling */
section {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Specific styling for the 'about' section */
#about {
    margin-top: 30px;
}

/* Center the iframe inside the #game section */
#game {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}

#game iframe {
    max-width: 100%;
    width: 800px;  /* Set a fixed width for large screens */
    height: 600px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

/* Footer styling */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer p {
    font-size: 0.9em;
}

/* Add responsiveness */
@media (max-width: 768px) {
    #game iframe {
        width: 100%;
        height: 400px;
    }
}
