* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0f0f0f;
}
body #Menu_Btn {
  padding: 10px 20px;
  border-radius: 50%;
  position: absolute;
  position: fixed;
  right: 3%;
  top: 3%;
  border: solid 3px transparent;
  color: rgb(255, 69, 69);
  background-color: #202020;
  z-index: 1000000000000000000;
  font-size: 35px;
  transition: 0.5s;
  cursor: pointer;
}
@media (min-width: 320px) and (max-width: 768px) {
  body #Menu_Btn {
    padding: 10px 18px;
    font-size: 25px;
  }
}
body #Menu_Btn:hover {
  background-color: #202020;
  border: solid 3px rgb(255, 69, 69);
}
body .Menu_Box {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.801), rgba(2, 0, 34, 0.486)), url(../../Assets/Background_Img/Menu.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(20, 20, 20);
  position: absolute;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transform: scale(0);
  opacity: 0;
  transition: 0.5s;
  animation: Zoom 40s linear infinite;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  body .Menu_Box {
    animation: Zoom_2 40s linear infinite;
  }
  @keyframes Zoom_2 {
    0% {
      background-size: 150%;
    }
    50% {
      background-size: 200%;
    }
    100% {
      background-size: 150%;
    }
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .Menu_Box {
    animation: Zoom_2 40s linear infinite;
  }
  @keyframes Zoom_2 {
    0% {
      background-size: 250%;
    }
    50% {
      background-size: 280%;
    }
    100% {
      background-size: 250%;
    }
  }
}
@media (min-width: 552px) and (max-width: 768px) {
  body .Menu_Box {
    animation: Zoom_2 40s linear infinite;
  }
  @keyframes Zoom_2 {
    0% {
      background-size: 280%;
    }
    50% {
      background-size: 320%;
    }
    100% {
      background-size: 280%;
    }
  }
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Menu_Box {
    animation: Zoom_2 40s linear infinite;
  }
  @keyframes Zoom_2 {
    0% {
      background-size: 420%;
    }
    50% {
      background-size: 480%;
    }
    100% {
      background-size: 420%;
    }
  }
}
@keyframes Zoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 150%;
  }
  100% {
    background-size: 100%;
  }
}
body .Menu_Box .Menu {
  width: 800px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 1024px) {
  body .Menu_Box .Menu {
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }
}
body .Menu_Box .Menu div {
  width: 200px;
  height: 100px;
  background-color: #202020;
  position: relative;
  border-left: 3px solid rgb(255, 69, 69);
  border-right: 3px solid rgb(255, 69, 69);
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: Show 1s linear forwards;
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .Menu_Box .Menu div {
    width: 60%;
    height: 80px;
    border-radius: 40px;
    position: static;
    margin: 15px;
  }
}
@media (min-width: 552px) and (max-width: 768px) {
  body .Menu_Box .Menu div {
    width: 60%;
    height: 80px;
    border-radius: 40px;
    position: static;
    margin: 15px;
  }
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Menu_Box .Menu div {
    width: 90%;
    height: 60px;
    border-radius: 40px;
    position: static;
    margin: 15px;
  }
}
body .Menu_Box .Menu div:first-child {
  top: 0%;
  left: 19%;
}
body .Menu_Box .Menu div:nth-child(2) {
  top: 28%;
  left: 9%;
}
body .Menu_Box .Menu div:nth-child(3) {
  top: 0%;
  left: -1%;
}
body .Menu_Box .Menu div:nth-child(4) {
  top: -28%;
  right: 41%;
}
body .Menu_Box .Menu div:hover {
  transform: scale(1.1);
  z-index: 5;
  cursor: pointer;
  background: #0f0f0f;
}
body .Menu_Box .Menu div:hover a {
  color: rgb(255, 69, 69);
}
body .Menu_Box .Menu div a {
  color: white;
  font-size: 25px;
  text-decoration: none;
  z-index: 6;
  padding: 40px;
}
body .Menu_Box .Menu div:hover::before {
  background: #0f0f0f;
}
body .Menu_Box .Menu div:hover::after {
  background: #0f0f0f;
}
body .Menu_Box .Menu div::before {
  content: "";
  width: 93%;
  height: 123%;
  top: -9px;
  position: absolute;
  background-color: #202020;
  transform: rotate(58deg);
  border-left: 3px solid rgb(255, 69, 69);
  border-radius: 10px;
  border-right: 3px solid rgb(255, 69, 69);
}
@media (min-width: 320px) and (max-width: 1024px) {
  body .Menu_Box .Menu div::before {
    display: none;
  }
}
body .Menu_Box .Menu div::after {
  content: "";
  width: 93%;
  height: 121%;
  top: -9px;
  position: absolute;
  background-color: #202020;
  transform: rotate(-57deg);
  border-left: 3px solid rgb(255, 69, 69);
  border-right: 3px solid rgb(255, 69, 69);
  border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 1024px) {
  body .Menu_Box .Menu div::after {
    display: none;
  }
}
body .Games_Container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .Games_Container .Games_Container_Img {
  width: 100%;
  height: 500px;
  background-image: url(../../Assets/Background_Img/0.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container .Games_Container_Img {
    height: 250px;
  }
}
body .Games_Container #Games_Box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body .Games_Container #Games_Box .Game {
  width: 280px;
  height: auto;
  margin: 10px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.363);
  animation: fade linear both;
  animation-timeline: view();
  animation-range: entry 50% cover 50%;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .Games_Container #Games_Box .Game::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.1725490196);
}
body .Games_Container #Games_Box .Game:hover {
  transform: translateY(5px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.603);
}
body .Games_Container #Games_Box .Game .Game_Img_Box {
  width: 100%;
  height: 350px;
}
body .Games_Container #Games_Box .Game .Game_Img_Box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .Games_Container #Games_Box .Game .Gallery_Box {
  display: none;
}
body .Games_Container #Games_Box .Game div {
  width: 100%;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .Games_Container #Games_Box .Game div h4 {
  text-align: center;
  color: whitesmoke;
}
body .Games_Container #Games_Box .Game div span {
  color: whitesmoke;
}
body .Games_Container #Games_Box .Game.active {
  position: absolute;
  width: 100%;
  height: 100vh;
  position: fixed;
  align-items: flex-start;
  inset: 0;
  margin: 0;
  padding: 20px;
  transition: 0.5s;
  background-color: #202020;
  z-index: 5;
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container #Games_Box .Game.active {
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    padding: 0;
  }
}
body .Games_Container #Games_Box .Game.active:hover {
  transform: none;
}
body .Games_Container #Games_Box .Game.active .Close_Btn {
  border-radius: 50%;
  padding: 10px 15px;
  border: 4px solid red;
  background-color: #202020;
  font-size: 20px;
  color: red;
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 2%;
  cursor: pointer;
}
body .Games_Container #Games_Box .Game.active .Gallery_Box {
  width: 70%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box {
    width: 60%;
    height: 500px;
    top: 5%;
    right: 3%;
    overflow-y: auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box {
    width: 52%;
    height: 500px;
    top: 6%;
    right: 5%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box {
    width: 40%;
    height: 500px;
    top: 6%;
    right: 5%;
    overflow-y: auto;
  }
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box {
    width: 100%;
    height: auto;
    position: static;
  }
}
body .Games_Container #Games_Box .Game.active .Gallery_Box img {
  width: 400px;
  height: 300px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.473);
}
@media (min-width: 1024px) and (max-width: 1200px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box img {
    width: 350px;
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box img {
    width: 250px;
    height: 200px;
  }
}
@media (min-width: 552px) and (max-width: 768px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box img {
    width: 300px;
    height: 200px;
  }
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container #Games_Box .Game.active .Gallery_Box img {
    width: 90%;
    height: 200px;
  }
}
body .Games_Container #Games_Box .Game.active div {
  width: auto;
}
body .Games_Container #Games_Box .Game.active div p {
  color: whitesmoke;
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container #Games_Box .Game.active div p {
    font-size: 12px;
  }
}
body .Games_Container #Games_Box .Game.active .Game_Img_Box {
  width: 400px;
  height: 500px;
}
@media (min-width: 320px) and (max-width: 552px) {
  body .Games_Container #Games_Box .Game.active .Game_Img_Box {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */