body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0; /* Add more margin top */
    font-size: 24px; /* Increase font size */
}

h2 {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #181817;
}

a:hover {
    text-decoration: none;
    color: darkslategrey;
}

nav a {
    padding: 10px 20px;
    max-width: 20px;
    text-decoration: none;
    color: #000;
    border-radius: 10px; /* Add border radius */
}

nav a:hover {
    color: whitesmoke;
    background-color: black;
}

.nav-bored:hover {
    border: 2px solid black;
    color: #FFDD00;
    background-color: black;
}

main {
    padding: 20px;
}

.hero {
    /*background-image: url("hero_background.jpg"); /* Add a background image */
    /*background-size: cover;
    background-position: center;*/
    color: black; /* Light text for dark background */
    padding: 50px;
    text-align: center;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #0069d9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 20px;
    padding: 20px;
}

.game-card {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 3px solid black;
    border-radius: 20px;
    padding: 50px 20px;
    text-align: center;
    transition: transform 0.2s ease-in-out; /* Add hover effect */
    background-color: white;

}

.game-card:hover {
    color: #FFDD00;
}

.game-card:nth-child(even):hover {
    background-color: black; /* Light pink */
    a{
        color:#FFDD00;
    }
}

.game-card:nth-child(odd):hover {
    background-color: black; /* Light pink */
    a{
        color:whitesmoke;
    }
}

.game-card:nth-child(even) {
    background-color: whitesmoke;

}

.game-card:nth-child(odd) {
    background-color: white; /* Light pink */
    background-color: lightskyblue;
    a{
        color:black;
    }

}

.game-card a {
    text-decoration: none;
}

.game-card a:hover {
    text-decoration: none;
    color: #FFDD00;
}

.nav-bored {
    border: 2px solid black;
    background-color: #FFDD00;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.footer-button {
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buymeacoffee:hover {
    background-color: #FFDD00;
    color: black;
}

.contact:hover {
    background-color: lightskyblue;
    color: black;
}

.source:hover {
    background-color: lightcoral;
    color: black;
}

.padding-top-30 {
    padding-top: 50px;
}

/* Same styles as before */

.game-card:hover {
    transform: scale(1.02); /* Add subtle hover zoom effect */
}


/* Add media queries for mobile responsiveness here */
@media only screen and (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .game-container {
        /*padding: 20px;*/
        padding: 20px;
        margin-bottom: 20px;
    }
    .navigation {
        display: none;
    }
    .logo {
        justify-content: center;
    }

}