html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: Retro;
  src: url(./retro.ttf);
}

body {
  display: flex;
  font-family: 'Karla', sans-serif;
}

* {
  box-sizing: border-box;
}

#info {
  width: 35%;
  height: 100%;
  background: #101023;
  display: flex;
  justify-content: center;
  align-items: center;
}

#title {
  font: 5vw Retro;
  color: #eeeef7;
  text-shadow: 0.5vw 0.5vw #080811;
  text-align: center;
}

#content {
  width: 65%;
  height: 100%;
  background: #171735;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cards {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-gap: 3vw;
}

#cards img {
  width: 100%;
  border-radius: 0.5vw 0.5vw 0 0;
}
.card {
  border-radius: 0.5vw;
  background: #cbcbe7;
  color: #2f2f37;
  width: 15vw;
  height: 20vw;
  box-shadow: 0.5vw 0.5vw 0.5vw #080811;
  text-align: center;
  position: relative;
  font-size: 0.8vw;
}

.play {
  width: 100%;
  border-radius: 0 0 0.5vw 0.5vw;
  background: #3d3d8f;
  height: 2vw;
  position: absolute;
  bottom: 0;
  padding-top: 0.5vw;
}

.play:hover {
  background: #5e5eba;
}

.desc {
  margin: 0.3vw;
}

h1 {
  margin: 0.5vw;
}

a {
  font: 0.8vw Retro;
  color: #eeeef7;
  text-decoration: none;
}
