body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: lightseagreen;
    color: black;
}

header {
    background-color: green;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center; /* Align items vertically */
}

#logo-top {
    width: 100px; /* Adjust the size as needed */
    margin-right: 15px; /* Space between logo and title */
}

.header-title {
    flex-grow: 1; /* Allow the title to expand */
    text-align: center; /* Center the title and nav */
}

nav {
    display: inline-block; /* Keep nav inline with title */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: black;
    text-decoration: none;
}

#hero {
    background: url('https://via.placeholder.com/1200x400.png?text=Rush+Game+Banner') no-repeat center center/cover;
    color: black;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 2s ease-in-out;
}

#hero h2 {
    font-size: 3em;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #61dafb;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: greenyellow;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
}

footer {
    background-color: green;
    color: black;
    text-align: center; /* Center the footer text */
    padding: 10px 0;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Align items vertically */
}

#logo-bottom {
    width: 100px; /* Adjust the size as needed */
    margin-right: 15px; /* Space between logo and text */
}

footer p {
    flex-grow: 1; /* Allow the text to expand */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}