html {
  height: 100%;
  width: 100%;
}
body {
  margin: 0;
  background-color: #111;
}
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
ul.topnav li a img {
  width: 3vw;
}
ul.topnav li {
  float: left;
}
ul.topnav li a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 2vw;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
}
ul.topnav li a:hover {
  background-color: #111;
}
.quicklinks {
  width: 100%;
  height: 50vh;
  background-color: #111;
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: linear-gradient(#733, #111);
  padding-top: 40px;
  padding-bottom: 80px;
}
.main h1 {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 5vw;
  color: #f22;
  text-align: center;
  text-shadow: 0 0 10px #000;
}
.main h2 {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 3vw;
  color: #f22;
  text-align: center;
  text-shadow: 0 0 10px #000;
}
.main p {
  font-family: 'Roboto Mono', monospace;
  text-align: center;
  font-size: 2vw;
  color: #f22;
  text-shadow: 0 0 10px #000;
}
.about {
  display: flex;
  flex-direction: row;
  background-color: #111;
  background-size: 100px 100px;
}
.about .col1, .about .col2, .about .col3 {
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding: 50px;
  font-family: 'Roboto Mono', monospace;
  font-size: 2vw;
  color: #f22;
  text-shadow: 0 0 10px #000;
}
.row1, .row2, .row3, .quicklinks {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 40px;
  padding-bottom: 40px;
}
.row1 {
  padding-top: 80px;
}
.row3 {
  padding-bottom: 80px;
}
.gamecard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25vw;
  height: 25vw;
  border-radius: 20px;
  background-color: #333;
  box-shadow: 0 0 40px #000;
}
.papacard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25vw;
  height: auto;
}
.gamecard a, .papacard a {
  text-decoration: none;
  display: block;
}
.gamecard a img {
  object-fit: cover;
  max-width: 20vw;
  max-height: 30vh;
  border-radius: 20px;
}
.papacard a img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px #000;
}
.game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 90vw;
  border-radius: 20px;
  background-color: #333;
  padding: 20px;
  margin-top: 40px;
}