body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
}

/* Style the header and navigation */
header {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #222222;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}
footer a {
    color: #ff5733;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ff4222;
}
nav a:hover {
    color: #ff5733;
}

/* Style the main content area */
main {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

/* Style game cards */
.game-card {
    display: inline-block;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.game-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px 0;
}

.game-card h3 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.game-card p {
    font-size: 1.2rem;
    margin: 0;
}




/* Style the "hero" section */
#hero {
    background: url('https://cdn.glitch.global/03ccac5c-f377-489f-b340-270eaf205824/background-image.jpg?v=1697089818952') center/cover;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    font-size: 3rem;
    margin: 20px 0;
}

#hero p {
    font-size: 1.4rem;
    margin: 0 0 20px 0;
}

#hero .button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5733;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
#about-us .button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5733;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
#hero .button:hover {
    background-color: #ff4222;
}
/* Style the "About Us" section */
#about-us {
    padding: 20px;
    text-align: center;
}


#about-us h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

#about-us p {
    font-size: 1.4rem;
    margin: 0 0 20px 0;
}

#about-us .button:hover {
    background-color: #ff4222;
}

/* Style the footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #111111;
    color: #ffffff;
    font-size: 1.2rem;
}

