body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
}

header {
    font-size: 20px;
    text-align: center;
    background-color: rgb(78, 204, 78);
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;

}

#introduction {
    margin: 20px;
    font-size: 20px;


}


#card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px;
}


.gameCardTitle {
    text-align: center;

}

.gameCardDesc {
    color: rgb(105, 104, 104);
    padding-bottom: 10px;
}

.playBtn {
    background-color: rgb(83, 216, 83);
    padding: 10px;
    border: 1px black solid;
    margin-bottom: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.playBtn:hover {
    background-color: rgb(62, 160, 62);
    border: 2px black solid;
    border-radius: 10px;

}

.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: center;
    padding-bottom: 25px;
    
}


footer {
    background-color: rgb(78, 204, 78);
    padding: 20px;
    color: white;
}

footer a{
    color: rgb(56, 105, 64);
}