@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700,800");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", helvetica, arial, sans-serif;
}
html,
body {
  background: black;
  font-size: 14px;
  font-weight: 400;
}
body {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: auto;
  display: flex;
  flex-direction: column;
}
header {
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.493);
}
header .logo img {
  width: 160px;
  margin: 20px;
  cursor: pointer;
}

header .navlist ul,
.logolink ul {
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 2rem 1rem;
}

header .navlist li,
.logolink li {
  list-style-type: none;
}

header .navlist li a,
.logolink li a {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
}
header .navlist li:hover a,
.logolink li:hover a {
  background-color: #341c5e;
  color: white;
}
video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
video::media-controls {
  display: none !important;
}
#content {
  display: grid;
  position: relative;
  color: white;
  padding: 10rem 10rem 0 10rem;
  background-color: rgba(0, 0, 0, 0.493);
  justify-content: center;
  height: 100vh;
}
.new,
button {
  margin-bottom: 10px;
  border-radius: 24px;
  background-color: #6635bc;
  border-color: #6635bc00;
}
.new {
  max-width: 2cm;
}
.new p {
  text-align: center;
  font-weight: 700;
  font-size: small;
}
button {
  color: white;
  padding: 1px 20px;
  margin-right: .5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}
button:hover{
  color: #341c5e;
  background-color: white;
  font-weight: 700;
}
.title {
  font-size: 4em;
  font-weight: 500;
}
.game article {
  margin: 1rem 0;
}
.game_card {
  position: relative;
  display: block;
  width: 800px;
  height: 350px;
  margin: 100px auto;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s;
}
.game_card:hover {
  transform: scale(1.02);
  transition: all 0.4s;
}
.game_card .info_section {
  position: relative;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  z-index: 2;
  border-radius: 10px;
}
.game_card .info_section .game_header {
  position: relative;
  padding: 25px;
  height: 40%;
}
.game_card .info_section .game_header h1 {
  color: #fff;
  font-weight: 400;
}
.game_card .info_section .game_header h4 {
  color: #9ac7fa;
  font-weight: 400;
}
.game_card .info_section .game_header .supp {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.game_card .info_section .game_header .type {
  display: inline-block;
  color: #cee4fd;
  margin-left: 10px;
}
.game_card .info_section .game_header .local {
  position: relative;
  float: left;
  margin-right: 20px;
  height: 120px;
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5);
}
.game_card .info_section .game_desc {
  padding: 25px;
  height: 50%;
}
.game_card .info_section .game_desc .text {
  color: #cfd6e1;
}
.game_card .info_section .game_social {
  height: 10%;
  padding-left: 15px;
  padding-bottom: 20px;
}
.game_card .info_section .game_social ul {
  list-style: none;
  padding: 0;
}
.game_card .info_section .game_social ul li {
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  transition-delay: 0.15s;
  margin: 0 10px;
}
.game_card .info_section .game_social ul li:hover {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.8);
}
.game_card .info_section .game_social ul li i {
  font-size: 19px;
  cursor: pointer;
}
.game_card .blur_back {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  right: 0;
  background-size: cover;
  border-radius: 11px;
}
aside {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
}
aside .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1em;
}
aside .container .card {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 1em;
  background: rgba(255, 255, 255, 0.074);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(40px);
  border: solid 2px transparent;
  background-clip: padding-box;
  box-shadow: 0px 10px 10px rgba(46, 54, 68, 0.03);
}
aside .container .card .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0.5;
  transition: 0.5s;
}
aside .container .card .content .img {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(0, 0, 0, 0.25);
}
aside .container .card .content .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
aside .container .card .content .cardContent h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 10px;
  line-height: 1.1em;
}
aside .container .card .content .cardContent h3 span {
  font-size: 12px;
  font-weight: 300;
  text-transform: initial;
}
aside .container .card .sci {
  position: absolute;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
aside .container .card .sci li {
  margin: 0 20px;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.5s;
  transition-delay: calc(0.1s * var(--i));
  list-style-type: none;
}
aside .container .card .sci li a {
  font-size: 24px;
  color: white;
}
aside .container .card:hover .content {
  opacity: 1;
  transform: translateY(-20px);
}
aside .container .card:hover .sci li {
  transform: translateY(0px);
  opacity: 1;
}
footer {
  margin-top: 150px;
  width: 100%;
  padding: 100px 15%;
  background: rgb(21, 21, 21);
  color: #efefef;
  display: flex;
}
footer div {
  text-align: center;
}
.col-2 {
  flex-grow: 2;
  padding-top: 20px;
}
.col-3 {
  padding-top: 20px;
}
footer div h3 {
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.col-1 a {
  display: block;
  text-decoration: none;
  color: #efefef;
  margin-bottom: 10px;
}
form input {
  width: 300px;
  height: 45px;
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  outline: none;
  border: none;
}
.col-3 p {
  max-width: 200px;
}
.hamburger {
  display: none;
}
@media screen and (max-width: 1000px) {
  footer {
    display: block;
  }
  .col-3 p{
    margin: auto;
  }
  footer div{
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .navlist span {
    display: none;
  }
  .game_header {
    width: 60%;
  }
  .game_desc {
    width: 50%;
  }
  .info_section {
    background: linear-gradient(to right, #0d0d0c 50%, transparent 100%);
  }
  .blur_back {
    width: 80%;
    background-position: -100% 10% !important;
  }
}
@media screen and (max-width: 768px) {
  header .logo img {
    width: 120px;
    margin: 20px;
    cursor: pointer;
  }
  .game article p {
    font-size: 0.9rem;
  }
  #content {
    padding: 9rem 10rem 0 5rem;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger .line {
    width: 20px;
    height: 2px;
    background: #fefefe;
    margin: 6px 0;
  }
  .navlist {
    height: 0;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #11101b;
    transition: 0.2s;
    overflow: hidden;
  }
  .navlist.active {
    height: 350px;
  }
  .navlist.active ul {
    opacity: 1;
  }
  .navlist ul {
    flex-direction: column;
    width: fit-content;
    margin: 10% auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
  }
  .navlist ul li a {
    margin-bottom: 12px;
  }
  .navlist span {
    flex-direction: column;
  }
  .navlist span li {
    margin-bottom: 30px;
  }
  .logolink {
    display: none;
  }
  footer div {
    margin-top: 30px;
  }
  footer input {
    margin: 0 0 5px;
  }
  .col-3 p {
    max-width: max-content;
  }
  .game_card {
    width: 95%;
    margin: 70px auto;
    min-height: 350px;
    height: auto;
  }
  .blur_back {
    width: 100%;
    background-position: 50% 50% !important;
  }
  .game_header {
    width: 100%;
    margin-top: 85px;
  }
  .game_desc {
    width: 100%;
  }
  .info_section {
    background: linear-gradient(to top, #141413 50%, transparent 100%);
    display: inline-grid;
  }
}
#valorant {
  box-shadow: 0px 0px 150px -45px rgba(255, 51, 0, 0.5);
}
#valorant:hover {
  box-shadow: 0px 0px 120px -55px rgba(255, 51, 0, 0.5);
}
.valorant_back {
  background: url("img/valorant-2k.jpg");
}
#hogwarts {
  box-shadow: 0px 0px 150px -45px rgba(19, 160, 134, 0.6);
}
#hogwarts:hover {
  box-shadow: 0px 0px 120px -55px rgba(19, 160, 134, 0.6);
}
.hogwarts_back {
  background: url("img/Featured-44.jpg");
}
#space {
  box-shadow: 0px 0px 150px -45px rgba(199, 147, 75, 0.7);
  margin-bottom: 200px;
}
#space:hover {
  box-shadow: 0px 0px 120px -55px rgba(199, 147, 75, 0.7);
}
.space_back {
  background: url("img/a-space-for-the-unbound-guide.png");
}
