/* 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." */
:root {
 --color-bg: #25043d;
 --color-header: hotpink;
 --color-header-link: #0000EE;
 --color-accent: #56d2e2;
}

body {
  background-color: var(--color-bg);
  /*text*/color: white;
  font-family: Sans-Serif;
}


p {
  font-size: 18px;
  margin: 12px 0px;
  line-height: 16.5px
}

a {
  color: var(--color-accent);
  text-decoration: underline dotted;
}

.header {
  display: flex; /* allow text to be next to images */
  align-items: center; /* make text centered vertically */
  background-color: var(--color-header);
}

.header a { /* links in the header */
  color: var(--color-header-link);
}

.game-listing-container {
  display: grid;
  grid-template-columns: auto auto;
  /*padding: 10px;*/
}

.game-listing {
  border: 10px solid var(--color-accent);
  padding: 30px;
  font-size: 30px;
  text-align: center;
}