/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Helvetica;
  
  width: 555px;
  margin: 10px auto 10px;
  border: 1px solid #333;
}

.games {
    float: left;
    text-align: center;
    margin-left: 20px;
    margin-right: 5px;
    margin-bottom: 10px;
    border: 1px solid #333;
}

header {
  padding: 5px;
  width: 555px;
  height: 100px;
  text-align: center;
}

header ul {
  padding: 0%;
  margin: 0px;  
}

header ul li {
  list-style: none;
  display: inline-block;
}

header ul li a {
  text-decoration: none;
  color: white;
  margin-bottom: 5px;
  text-align: center;
  padding:5 20px;
  background-color: gray;
}

header ul li a:houver {
  background-color: darkgray;
}

h1 {
  text-align: center;
}

article h2 {
    margin-left: 30px;
}

article p {
    padding: 10px;
    text-align: justify;
    text-justify: inter-character;
}

footer {
  clear: both;
  width: 300px;
  text-align: center;
  margin:0 auto;
  padding: 5px;
}