body {
  font-family: "Rubik", sans-serif;
  background: black;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  grid-gap: 5px;
}

.img-responsive {
  max-width: 100%;
  display: block;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
}

.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
}

.grid-2-columns-with-first-narrow {
  grid-template-columns: 1fr 1fr;
}

.embed {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.card {
  background: rgb(17, 16, 29);
  margin: 30px 0;
}

.card-body {
  padding: 30px;
}

.card-footer {
  padding: 0 30px 30px;
}

.btn {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background: transparent;
  text-decoration: none;
}

.btn:hover {
  color: rgb(233, 165, 251);
}

.gamingh4 {
  text-align: left;
  padding: 30px 0;
  font-size: 28px;
  opacity: 0.7;
}

.game-links {
  font-size: 12px;
  color: white;
  background: transparent;
  border: 1px solid white;
  display: inline-block;
  margin-top: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  margin-left: 70px;
}

section {
  max-width: 100%;
  padding: 100px;
  margin: 0 auto;
}

section.secondary {
  background: rgba(17, 16, 29, 0.744);
}

header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1601153211050-ae2e1fa428d7?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Z2FtaW5nJTIwd2FsbHBhcGVyfGVufDB8fDB8fHww");
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 200px 0;
}

header h1 {
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  margin: 30px 0;
}

header h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  margin: 20px 0;
}

header h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 20px 0;
}

header a {
  font-size: 12px;
  color: white;
  background: transparent;
  border: 1px solid white;
  display: inline-block;
  margin-top: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
}

header a:hover {
  font-size: larger;
  color: rgb(233, 165, 251);
}

main {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  color: white;
  padding: 100px 0;
}

main h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: white;
  opacity: 0.3;
  text-transform: uppercase;
}

main h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin: 0;
}

main h4 {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: white;
  margin: 0;
}

main p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: white;
  opacity: 0.7;
}

main a {
  font-size: 15px;
  color: white;
  background: transparent;
  border: 1px solid white;
  display: inline-block;
  margin-top: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
}

main a:hover {
  font-size: larger;
  color: rgb(233, 165, 251);
}

footer {
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1601153211050-ae2e1fa428d7?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Z2FtaW5nJTIwd2FsbHBhcGVyfGVufDB8fDB8fHww");
  background-repeat: no-repeat;
  background-size: cover;
}

footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

footer p {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  opacity: 0.7;
  padding: 40px;
}

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
}

footer a:hover {
  font-size: larger;
  color: rgb(233, 165, 251);
}



@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }

  header h1 {
    font-size: 48px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
  }

  .grid {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }

  section {
    padding: 30px;
  }

  .card-header {
    display: none;
  }

  .embed {
    aspect-ratio: 16 / 9;
  }
}
