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

/* Sticky header */
header {
    background-color: #fff;
    color: black;
    /* padding: 10px 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Flexbox for header */
header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#login {
    display: flex;
    justify-content: flex-end;
}

#login button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#login button:hover {
    background-color: #e68a00;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 15px 0;
    border-radius: 5px;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff9900;
}

/* Search bar */
#search-bar {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 500px;
    position: sticky;
}

#gaming-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}