@font-face {
  font-family: Masone;
  src: url("./Masone.otf");
}
:root, html, body {
  box-sizing: border-box;
  font-family: Masone;
  margin: 0px !important;
  padding: 0px !important;
  scroll-behavior: smooth;
}

body {
  margin: 0px !important;
  padding: 0px !important;
  position: relative;
}

.side-nav {
  height: 100vh;
  position: fixed;
  width: 300px;
  background-color: rgb(26, 24, 24);
  left: -300px;
  transition: left 0.5s ease-in-out;
  z-index: 100;
}

.side-nav-hidden {
  left: 0px;
  z-index: 100;
  position: fixed;
}

.side-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 4rem;
}

.link {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

.fz-6 {
  font-size: 3rem;
}

.fz-5 {
  font-size: 2.5rem;
}

.fz-4 {
  font-size: 2.5rem;
}

.fz-3 {
  font-size: 2rem;
}

.fz-2 {
  font-size: 1.5rem;
}

.fz-1 {
  font-size: 1rem;
}

.black {
  color: black;
}

.gray {
  color: gray;
}

.white {
  color: white;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  background-color: white;
  padding-bottom: 1rem;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.nav-search {
  border: 1px solid #C1C1C1;
  display: flex;
  align-items: center;
  padding-inline: 0.7rem;
  border-radius: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  width: 240px;
}
.nav-search input {
  outline: none;
  border: none;
  width: 100%;
  font-size: 1rem;
  background: transparent;
}
.nav-search .search-input-icon:hover {
  cursor: pointer;
}

.nav-menu-icon:hover {
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  height: 600px;
  background-image: url("./assets/images/playstation.jpeg");
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
  box-sizing: border-box;
  padding: 3rem;
  text-align: center;
}

.story {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  text-align: center;
  gap: 2rem;
}
.story .mission-and-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.story .mission, .story .vision {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.story .mission h2, .story .mission p, .story .vision h2, .story .vision p {
  padding: 0px;
  margin: 0px;
}
.story .vision {
  background-color: #F2F2F2;
}

.games {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  gap: 2rem;
  background-color: #E5E5E5;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.games .image-container {
  width: 80%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.games .image-container img {
  height: 100%;
  width: 100%;
  width: 300px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  background-position-y: center;
}
.games .dots {
  display: flex;
  gap: 1rem;
}
.games .dots .dot {
  cursor: pointer;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #C7D0EC;
}
.games .dots .dot-active {
  background-color: #7F93D0;
}
.games .btn {
  cursor: pointer;
  background-color: #7F93D0;
  color: white;
  width: 200px;
  height: 40px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 1rem;
}

.games-gadgets .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.games-gadgets img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.download-games {
  background-image: url("./assets/images/controller.jpeg");
  background-size: cover;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 3rem;
  }
  .hero {
    justify-content: center;
    align-items: center;
  }
  .story {
    padding-inline: 8rem;
  }
  .story .mission-and-vision {
    flex-direction: row;
    gap: 4rem;
  }
  .games .image-container {
    height: 400px;
  }
  .games .image-container img {
    height: 100%;
  }
  .games-gadgets .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 400px;
  }
  .games-gadgets .images img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .download-games {
    height: 600px;
    padding-top: 5rem;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 820px) {
  .hero {
    padding-inline: 12rem;
  }
  .story {
    padding-inline: 12rem;
  }
  .story .mission-and-vision {
    flex-direction: row;
    gap: 4rem;
  }
  .games .image-container {
    height: 500px;
    width: 500px;
  }
  .games .image-container img {
    height: 100%;
    width: 100%;
  }
  .games-gadgets .images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 400px;
  }
  .download-games {
    height: 600px;
    padding-top: 5rem;
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=style.css.map */