header{
    background-color: navy;
    color: white;
    font-family: papyrus, cursive;
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
    padding: 5px;
}
#gameList{
    display: flex;
    flex-flow: row wrap;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    justify-content: space-evenly;
}
.game{
    flex: none;
    width: 250px;
    height: 250px;
    box-shadow: 4px 2px grey;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: rgb(189, 140, 57);
    margin: 5px;
    position: relative;
    justify-content: space-around;
}
.game:nth-child(even){
    background-color: rgb(123, 184, 219);
}

.game > *{
    display: block;
}
.game a{
    text-align: center;
}
.game img{
    width: 200px;
    max-height: 175px;
    margin-top: 10px;
}
.game span{
    text-align: center;
    margin-top: 5px;
}
.title{
    font-weight: bold;
    font-size: 1.2em;
}
.authorData{
    justify-content: bottom;
    position: absolute; 
    bottom: 0px;
    width: 100%;
    padding-bottom: 5px;
}
.authorData > span{
    display: block;
}