/* CSS boilerplate, flat and moder design */
/* Responsive design */

/* CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f4f4f4;
}

/* Global */
.container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Header */
header {
    background-color: #2196f3;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

/* Header h1 */
header h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

/* Header subheading p */
header p {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

/* Header p */
nav {
  text-align: center;
  margin-bottom: 5px;
}

/* Header nav a */
nav a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.5s;
}

/* Header nav a:hover */
nav a:hover {
  background-color: #ff9800;
  transition: all 0.5s ease;
}

/* Header nav ul */
nav ul {
  list-style: none;
}

/* Header nav ul li */
nav ul li {
  display: inline-block;
}

/* Footer */
footer {
  background-color: #333;
  color: #2196f3;
  text-align: center;
  padding: 5px;
  margin-top: 5px;
  /* Fixed bottom */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Footer p */
footer p {
  font-size: 12px;
  font-style: italic;
}

/* Footer a */
footer a {
  color: #2196f3;
  text-decoration: underline;
}

/* Footer a:hover */
footer a:hover {
  color: #ff9800;
  transition: all 0.5s ease;
}

/* Main, content centered */
main {
  margin-bottom: 20px;
  text-align: center;
}

/* Main h2 centered */
main h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  color: #2196f3;
}

/* Main p */
main p {
  margin-bottom: 10px;
}

/* Main div.game, display in line depending on the screen size */
main div.game {
  margin-bottom: 20px;
  border: #2196f3 1px solid;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.5s ease;
  max-width: 300px;
  margin: 0 auto;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

main div.game:hover {
  box-shadow: 0 0 10px #ff9800;
  transition: all 0.5s ease;
}

/* Main div.game img */
main div.game img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Main div.game h3 */
main div.game h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2196f3;
}

/* Main div.game p */
main div.game p {
  margin-bottom: 10px;
}

/* Main div.game a */
main div.game a {
  display: block;
  text-align: center;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.5s;
  background-color: #2196f3;
}

/* Main div.game a:hover */
main div.game a:hover {
  background-color: #ff9800;
  transition: all 0.5s ease;
}
