:root {
  --black: #190C19;
  --cream: #F5F0C3;
  --white: #fff;
  --purple: #e38cf2;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  justify-content: center;
  color: var(--purple);
  background-color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  width: 100%;
  margin-top: 8vh;
}

footer {
  margin: 2rem;
  text-align: center;
}

h1 {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

h2 {
  margin: 0;
  font-size: 2.5rem;
  color: var(--purple);
  font-family: 'Amaranth', Arial, Helvetica, sans-serif;
}

h2.social {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--purple);
  font-family: 'Amaranth', Arial, Helvetica, sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  display: flex;
  align-items: center;
}

a {
  color: var(--purple);
}

strong {
  color: var(--purple);
}

.column-layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

ul#games img {
  margin-right: 8px;
  border-radius: 8px;
}

ul#social {
  display: flex;
  justify-content: center;
}

ul#social li:not(:last-child) {
  margin-right: 8px;
}

.game-icon {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  border: 2px solid var(--purple);
  border-radius: 8px;
}

.studio-logo {
  width: 200px;
}

.story-icon {
  float: left;
  margin: 0 1rem 1rem 0;
  width: 60px;
  height: 60px;
}

.lockup {
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul.features {
  margin-top: 8px;
  list-style-type: square;
}
.features li {
  display: list-item;
  margin-left: 1.1rem;
  margin-bottom: 8px;
}

.column.main {
  width: 25vw;
}

.column.sidebar {
  margin-right: 2vw;
}

.content-block {
  margin-bottom: 6vh;
}

.screenshot-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 2vw;
  background-color: #968773
}

.screenshot-gallery li {
  margin: 1rem;
}

.screenshot {
  border-radius: 1rem;
}

footer a {
  color: var(--purple);
}
footer a:hover,
footer a:focus {
  color: var(--black);
  background-color: var(--purple);
  padding: 0.4rem;
  border-radius: 0.4rem;
}


@media only screen and (max-width: 1000px) {
  h2 {
    font-size: 3rem;
  }

  h2.social {
    font-size: 2rem;
  }

  p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .column-layout {
    flex-direction: column;
    align-items: center;
  }

  .content-block {
    margin-bottom: 4vh;
  }

  .column.main {
    width: 75vw;
    margin-top: 0;
  }
}