#image-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .game {
    width: 300px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
  }
  
  .thumbnail {
    width: 100%;
    height: auto;
  }
  
  .title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .game-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  body {
      background-color: #171b2c;
      color: #fff;
      margin: 0;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  .topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
  