@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --ba-Co: rgb(255, 255, 255);
  --ba-Co-drop: rgb(107, 107, 107);
  --ba-Co-abHeImg: rgba(33, 38, 41, 0.37);
  --ba-Co-Tr: #ffffffb6;
  --ba-Co-Tr-Ph: #7e7e7eb6;
  --ba-CO-Shadow: rgba(254, 254, 254, 0.839);
  --ba-Co-DropShadow: rgba(255, 255, 255, 0.678);
  --size-16px-1rem: 1rem;
  --size-24px: 1.5rem;
  --size-32px-2rem: 2rem;
  --size-40px: 2.5rem;
  --size-48px-3rem: 3rem;
  --size-56px: 3.5rem;
  --size-64px-4rem: 4rem;
  --size-72px: 4.5rem;
  --size-80px-5rem: 5rem;
  --fonts-40px: 40px;
  --fonts-32px: 32px;
  --fonts-24px: 24px;
  --fonts-20px: 20px;
  --fonts-16px: 16px;
  --gap-16-px: 1rem;
  --gap-24-px: 1.5rem;
  --gap-32-px: 2rem;
  --small-gap-24px: 1.5rem;
  --border-radius: 35px;
  --img-border-radius: 30px;
  --custom-border-radius: 80%;
  --Text-Co-White: #ffffff;
  --Text-Co-Black: #000000;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
* h1,
* h2,
* h3 {
  font-family: "Chakra Petch", sans-serif;
  font-style: normal;
  font-weight: 600;
}
* p {
  font-family: "Funnel Sans", serif;
  font-style: normal;
}

body {
  margin: var(--gap-16-px) var(--gap-16-px) 0 var(--gap-16-px);
  background-color: var(--ba-Co);
}

.navBar {
  position: absolute;
  background-color: var(--ba-Co-Tr);
  border-radius: var(--border-radius);
  width: clamp(45rem, 10vw, 60rem);
  height: var(--size-80px-5rem);
  top: 45px;
  left: 90px;
}
.navBar > ul {
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  font-family: "Chakra Petch", sans-serif;
  font-style: normal;
}
.navBar .are {
  background-color: var(--Text-Co-Black);
  color: var(--Text-Co-White);
  outline: 1px solid var(--Text-Co-White);
}
.navBar li {
  list-style: none;
}
.navBar li a,
.navBar li summary {
  display: grid;
  top: 0;
  border-radius: var(--border-radius);
  background-color: var(--ba-Co-Tr);
  font-size: var(--fonts-40px);
  color: var(--Text-Co-Black);
  width: 100%;
  height: 100%;
  padding: var(--size-16px-1rem);
  text-decoration: none;
  align-content: center;
  text-align: center;
}
.navBar li a:hover,
.navBar li summary:hover {
  background-color: var(--Text-Co-Black);
  color: var(--Text-Co-White);
  outline: 1px solid var(--Text-Co-White);
  cursor: pointer;
}
.navBar li details {
  height: 100%;
}
.navBar li details > summary {
  display: flex;
  border-radius: var(--border-radius);
  align-items: center;
}
.navBar li details > summary .material-icons {
  font-size: var(--size-32px-2rem);
}
.navBar li details[open] > summary {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.navBar li details[open] > summary .material-icons {
  rotate: 180deg;
}
.navBar li details[open] .dropDown {
  background-color: var(--ba-Co-drop);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
}
.navBar li details[open] .dropDown > li > a {
  border-radius: 0 0 0 0;
}

.small_footer {
  position: absolute;
  display: flex;
  background-color: var(--Text-Co-White);
  max-width: clamp(65rem, 1vw, 5rem);
  border-radius: 0 0 0 var(--img-border-radius);
  right: 0;
  padding: 25px;
  align-items: center;
  box-shadow: -10px 10px 25px rgba(255, 255, 255, 0.678);
}
.small_footer h1 {
  font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
  color: black;
}

/* Top-left-coroners */
.small_footer::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  margin-left: -97px;
  border-top-right-radius: var(--custom-border-radius);
  width: var(--size-72px);
  height: var(--size-64px-4rem);
}

.small_footer::before {
  box-shadow: 20px -10px 0 5px var(--ba-Co);
}

/* Bottom-right-coroners */
.small_footer::after {
  content: "";
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  bottom: -5.55rem;
  margin-right: -0.5rem;
  border-top-right-radius: var(--custom-border-radius);
  width: var(--size-72px);
  height: var(--size-64px-4rem);
}

.small_footer::after {
  box-shadow: 20px -10px 0 5px var(--ba-Co);
}

.hero_IMG {
  position: relative;
  z-index: -1;
  height: 100vh;
}
.hero_IMG .wallpaper {
  display: none;
}
.hero_IMG .videoImg {
  display: none;
}
.hero_IMG img {
  border: 1px solid var(--ba-Co);
  border-radius: var(--border-radius);
  max-width: 100%;
  height: 101%;
}
.hero_IMG video {
  border: 1px solid var(--ba-Co);
  border-radius: var(--border-radius);
  max-width: 100%;
}

.aboveHeroIMG {
  display: inline-flex;
  grid-template-columns: 1fr 1fr;
  position: relative;
  top: -400px;
  gap: var(--gap-24-px);
}
.aboveHeroIMG .NaHeroImg {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 2rem;
  text-shadow: -2px 2px 1px black;
  width: 50%;
  height: auto;
}
.aboveHeroIMG .H1Name {
  display: none;
}
.aboveHeroIMG .H1Name,
.aboveHeroIMG .Introductions > h1 {
  color: var(--Text-Co-White);
  text-shadow: -2px 2px 1px black;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
}
.aboveHeroIMG .Introductions {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5rem 0 0;
  max-width: 45%;
}
.aboveHeroIMG .Introductions p {
  color: var(--Text-Co-White);
  font-size: clamp(1rem, 2vw, 2rem);
  text-shadow: -2px 2px 1px black;
}

.gameCategory {
  display: inline-flex;
  flex-direction: column;
  position: absolute;
  top: 9rem;
  max-width: 50%;
  background-color: var(--ba-Co);
  border-radius: 0 var(--border-radius) 0 0;
}
.gameCategory h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
  text-align: center;
  margin: 1rem;
}
.gameCategory .gameBox {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
  gap: var(--gap-16-px);
}
.gameCategory .gameBox .gameText {
  padding-right: 1rem;
}
.gameCategory .gameBox img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--img-border-radius);
}
.gameCategory .gameBox h2 {
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}
.gameCategory .gameBox p {
  font-size: clamp(1rem, 1.2vw, 2rem);
  line-height: 1.7rem;
}

.gameCategory::after {
  content: "";
  position: absolute;
  border-bottom-left-radius: var(--border-radius);
  width: 50px;
  height: 50px;
  top: -50px;
  margin-left: 1px;
  background-color: rgba(255, 255, 255, 0);
}

.gameCategory::after {
  box-shadow: -10px 10px 0px 5px white;
}

.articleCategory {
  display: inline-flex;
  flex-direction: column;
  position: absolute;
  top: 24.7rem;
  left: 50%;
  max-width: 50%;
  background-color: var(--ba-Co);
}
.articleCategory > h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
  text-align: center;
  margin: 1rem;
}
.articleCategory .articleBox {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin: 0.5rem;
  padding-left: 1rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
  gap: var(--gap-16-px);
}
.articleCategory .articleBox > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--img-border-radius);
}
.articleCategory .articleText h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
  text-align: start;
}
.articleCategory .articleText h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: capitalize;
  text-align: start;
}
.articleCategory .articleText p {
  font-size: clamp(1rem, 1vw, 2rem);
  line-height: 1.7rem;
}

.articleCategory::after {
  content: "";
  position: absolute;
  border-bottom-left-radius: var(--border-radius);
  width: 50px;
  height: 50px;
  top: -50px;
  background-color: rgba(255, 255, 255, 0);
}

.articleCategory::after {
  box-shadow: -10px 10px 0px 5px white;
}

.articleCategory::before {
  content: "";
  position: absolute;
  border-bottom-right-radius: var(--border-radius);
  width: 50px;
  height: 50px;
  top: -50px;
  right: 1px;
  background-color: rgba(255, 255, 255, 0);
}

.articleCategory::before {
  box-shadow: 10px 10px 0px 5px white;
}

.mainMovies {
  position: relative;
  top: 44rem;
  width: 100%;
  border-radius: var(--border-radius);
  background-image: url(./gallery/background/movie.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.mainMovies > h1 {
  font-size: clamp(2.5rem, 2.5vw, 3.5rem);
  text-transform: capitalize;
  text-align: center;
  padding: 1rem;
  color: var(--Text-Co-White);
}
.mainMovies .moviesCategory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0.5rem;
  counter-reset: section;
  gap: 1rem;
}
.mainMovies .moviesBox {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin: 1rem;
  background-color: var(--ba-Co);
  border-radius: var(--border-radius);
  border: 10px solid white;
}
.mainMovies .moviesBox img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--img-border-radius);
}
.mainMovies .moviesBox .moviesText {
  margin: 0.5rem;
}
.mainMovies .moviesBox h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}
.mainMovies .moviesBox h1::before {
  counter-increment: section;
  content: "Top " counter(section) ": ";
}
.mainMovies .moviesBox p {
  font-size: clamp(1rem, 2.5vw, 2rem);
  line-height: 2rem;
}

.mainIMG {
  top: 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--size-32px-2rem);
  border-radius: var(--border-radius);
  background-image: url(./gallery/background/movie.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.mainIMG > h1 {
  color: var(--Text-Co-White);
  text-align: center;
  font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
  padding: var(--size-16px-1rem);
}

.imgGallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.imgGallery .boxImg {
  display: flex;
  border: 1px solid var(--Text-Co-White);
  border-radius: var(--img-border-radius);
  overflow: hidden;
  width: 500px;
  height: 100%;
  transition: all 0.5s ease-out;
  text-align: center;
  align-items: end;
}
.imgGallery .boxImg .imgH {
  opacity: 0;
  transition: 0.8s ease-in-out;
  cursor: pointer;
}
.imgGallery .boxImg img {
  border-radius: var(--border-radius);
  width: 100%;
  display: block;
  transition: 0.5s ease-in-out;
  filter: grayscale(100%);
}

.boxImg:hover {
  transform: scale(1.2, 1.2);
}
.boxImg:hover img {
  filter: grayscale(0%);
  cursor: pointer;
}
.boxImg:hover .imgH {
  display: grid;
  position: absolute;
  margin-bottom: 1rem;
  width: 500px;
  text-transform: capitalize;
  opacity: 1;
  color: var(--Text-Co-White);
  z-index: 1;
}

.mainVideo {
  top: 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--size-32px-2rem);
  border-radius: var(--img-border-radius);
  background-image: url(./gallery/background/movie.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.mainVideo > h1 {
  color: var(--Text-Co-White);
  text-align: center;
  font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
  padding: var(--size-16px-1rem);
}

.videoGallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.videoGallery .boxVideo {
  display: flex;
  border: 1px solid var(--Text-Co-White);
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 500px;
  height: 100%;
  text-align: center;
  align-items: end;
  transition: all 0.5s ease-out;
}
.videoGallery .boxVideo .imgH {
  position: absolute;
  width: 500px;
  height: auto;
  opacity: 0;
  text-transform: capitalize;
  color: var(--Text-Co-White);
  z-index: 1;
  cursor: pointer;
  transition: 0.8s ease-in-out;
}
.videoGallery .boxVideo video {
  border-radius: var(--border-radius);
  width: 100%;
  display: block;
  transition: all 0.5s ease-in-out;
  box-shadow: 5px 1px red;
  filter: grayscale(90%);
}
.videoGallery .boxVideo video:hover {
  filter: grayscale(0%);
  cursor: pointer;
}
.videoGallery .boxVideo video:hover ~ .imgH {
  opacity: 1;
}

.aboutMain {
  top: 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--size-32px-2rem);
  border-radius: var(--border-radius);
  background-image: url(./gallery/background/movie.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutMain > h1 {
  color: var(--Text-Co-White);
  text-align: center;
  text-transform: capitalize;
  font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
  padding: var(--size-16px-1rem);
}

.aboutBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.aboutBox .box {
  display: flex;
  gap: 1rem;
  width: 100%;
  background-color: var(--ba-Co);
  border-radius: var(--border-radius);
  border: 5px solid #fff;
}
.aboutBox .box img {
  width: 50%;
  border-radius: var(--border-radius);
}
.aboutBox .box .textBox {
  padding: 1rem 2rem;
}
.aboutBox .box .textBox h2 {
  font-size: 2.5rem;
}
.aboutBox .box .textBox p {
  font-size: 2rem;
}
.aboutBox .box:nth-child(even) {
  flex-direction: row-reverse;
}

.mainHistory {
  position: relative;
  height: 100%;
  top: 5rem;
  border-radius: var(--border-radius);
  background-image: url(./gallery/img/wp12964088-sci-fi-scenery-wallpapers.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.mainHistory > h1 {
  color: var(--Text-Co-White);
  text-align: center;
  text-transform: capitalize;
  font-size: clamp(var(--size-32px-2rem), 2.5vw, var(--size-48px-3rem));
  padding: var(--size-16px-1rem);
}

.historySection {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
.historySection .historyBox {
  display: grid;
  grid-template-columns: 1fr 2.5% 1fr;
  justify-items: center;
  align-items: center;
  margin: var(--size-24px);
}
.historySection .historyBox .cirkel {
  position: relative;
  z-index: 2;
  width: var(--size-32px-2rem);
  height: var(--size-32px-2rem);
  border-radius: 50%;
  background-color: var(--Text-Co-White);
  border: 0.2rem solid var(--Text-Co-Black);
}
.historySection .historyBox .text {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--ba-Co-Tr);
}
.historySection .historyBox .historyH {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
}
.historySection .historyBox .historyText {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 2rem;
}
.historySection .historyBox:nth-child(even) {
  display: grid;
  justify-items: center;
  align-items: center;
}
.historySection .historyBox:nth-child(even) .cirkel {
  grid-row: 1/2;
  grid-column: 2/3;
}
.historySection .historyBox:nth-child(even) .text {
  grid-column: 3/4;
}
.historySection .text:hover {
  box-shadow: rgb(1, 25, 46) 3px 3px 6px 0px inset, rgba(0, 60, 255, 0.932) -3px -3px 6px 1px inset;
}
.historySection .text:hover ~ .cirkel {
  background-color: greenyellow;
}

.historySection::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 96%;
  background-color: rgb(255, 255, 255);
  border-radius: var(--border-radius);
  border: 0.2rem solid var(--Text-Co-Black);
  z-index: 1;
}

.indexFooter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: -180rem;
  left: 0px;
  list-style: none;
  text-decoration: none;
  padding: var(--size-16px-1rem);
  background-image: url(./gallery/background/footer.png);
  background-size: 100% 100%;
  width: 100%;
  height: auto;
}
.indexFooter > .socialLogo > ul,
.indexFooter .info > ul {
  margin: 1rem;
  display: inline-flex;
  flex-direction: row;
  list-style: none;
  font-family: "Chakra Petch", sans-serif;
  font-style: normal;
  gap: 2rem;
}
.indexFooter > .socialLogo a,
.indexFooter .info a {
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: hsl(0, 100%, 5%);
  font-weight: 600;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
  text-decoration: none;
  font-family: "Funnel Sans", serif;
  font-style: normal;
}
.indexFooter > .socialLogo a:hover,
.indexFooter .info a:hover {
  -webkit-text-decoration: underline white;
          text-decoration: underline white;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
}
.indexFooter .socialLogo {
  text-shadow: 1px 1px 10px var(--Text-Co-White);
}
.indexFooter .socialLogo a:hover {
  text-shadow: 1px 1px 5px rgb(6, 161, 212);
}
.indexFooter h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
  color: hsl(0, 100%, 5%);
  font-weight: 600;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
}

.galleryFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  bottom: -10rem;
  list-style: none;
  text-decoration: none;
  padding: var(--size-16px-1rem);
  background-image: url(./gallery/background/footer.png);
  background-size: 100% 100%;
  width: 100%;
}
.galleryFooter > .socialLogo > ul,
.galleryFooter .info > ul {
  margin: 1rem;
  display: inline-flex;
  flex-direction: row;
  list-style: none;
  font-family: "Chakra Petch", sans-serif;
  font-style: normal;
  gap: 2rem;
}
.galleryFooter > .socialLogo a,
.galleryFooter .info a {
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: hsl(0, 100%, 5%);
  font-weight: 600;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
  text-decoration: none;
  font-family: "Funnel Sans", serif;
  font-style: normal;
}
.galleryFooter > .socialLogo a:hover,
.galleryFooter .info a:hover {
  -webkit-text-decoration: underline white;
          text-decoration: underline white;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
}
.galleryFooter .socialLogo {
  text-shadow: 1px 1px 10px var(--Text-Co-White);
}
.galleryFooter .socialLogo a:hover {
  text-shadow: 1px 1px 5px rgb(6, 161, 212);
}
.galleryFooter h1 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-transform: capitalize;
  color: hsl(0, 100%, 5%);
  font-weight: 600;
  text-shadow: 0px 2px 10px var(--Text-Co-White);
}

@media only screen and (max-width: 1600px) {
  body {
    margin: var(--size-16px-1rem) 0 0 0;
    background-color: var(--ba-Co);
    overflow-x: hidden;
  }
  .example::-webkit-scrollbar {
    display: none;
  }
  .navBar {
    position: absolute;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    width: clamp(40rem, 2.5vw, 60rem);
    height: var(--size-64px-4rem);
    top: 2.5rem;
    left: 4%;
  }
  .navBar > ul {
    display: inline-flex;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 0;
  }
  .navBar .are {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    outline: 1px solid var(--Text-Co-White);
  }
  .navBar .are_Icons {
    display: none;
  }
  .navBar li {
    list-style: none;
  }
  .navBar li a,
  .navBar li summary {
    display: grid;
    top: 0;
    border-radius: var(--border-radius);
    background-color: var(--ba-Co-Tr);
    font-size: clamp(var(--size-16px-1rem), 10vw, var(--size-32px-2rem));
    color: var(--Text-Co-Black);
    width: 100%;
    height: 100%;
    padding: var(--size-24px);
    text-decoration: none;
    align-content: center;
    text-align: center;
  }
  .navBar li a:hover,
  .navBar li summary:hover {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    outline: 1px solid var(--Text-Co-White);
    cursor: pointer;
  }
  .navBar li details {
    height: 100%;
  }
  .navBar li details > summary {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
  }
  .navBar li details > summary .material-icons {
    font-size: var(--fonts-24px);
  }
  .navBar li details[open] {
    height: 100%;
  }
  .navBar li details[open] > summary {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .navBar li details[open] > summary .material-icons {
    rotate: 180deg;
  }
  .navBar li details[open] .dropDown {
    background-color: var(--ba-Co-drop);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
  }
  .navBar li details[open] .dropDown > li > a {
    border-radius: 0 0 0 0;
  }
  .small_footer {
    position: absolute;
    display: flex;
    background-color: var(--Text-Co-White);
    max-width: 500px;
    border-radius: 0 var(--border-radius);
    right: 0;
    padding: 25px;
    align-items: center;
    box-shadow: -10px 10px 25px var(--ba-Co-DropShadow);
  }
  .small_footer h1 {
    font-size: clamp(1.5rem, 1.5vw, 2.5rem);
    color: black;
  }
  /* Top-left-coroners */
  .small_footer:before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    top: 1px;
    margin-left: -65px;
    border-top-right-radius: var(--custom-border-radius);
    max-width: var(--size-40px);
    height: var(--size-40px);
  }
  .small_footer:before {
    box-shadow: 15px -6px 0 5px #ffffff;
  }
  /* Bottom-right-coroners */
  .small_footer::after {
    content: "";
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    bottom: -4.02rem;
    left: 1rem;
    border-top-right-radius: var(--custom-border-radius);
    max-width: var(--size-40px);
    height: var(--size-40px);
  }
  .small_footer::after {
    box-shadow: 21px -10px 0 7px #ffffff;
  }
  .hero_IMG {
    position: relative;
    z-index: -1;
    height: 100dvh;
  }
  .hero_IMG img {
    border: 1px solid var(--ba-Co);
    border-radius: var(--border-radius);
    max-width: 100%;
  }
}
@media only screen and (max-width: 1535px) {
  body {
    margin: 0.5rem 0 0 0;
  }
  .mainMovies {
    position: relative;
    top: 44rem;
    width: 100%;
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .mainMovies > h1 {
    font-size: clamp(2.5rem, 2.5vw, 3.5rem);
    text-transform: capitalize;
    text-align: center;
    padding: 1rem;
    color: var(--Text-Co-White);
  }
  .mainMovies .moviesCategory {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    counter-reset: section;
    gap: 1rem;
  }
  .mainMovies .moviesBox {
    display: grid;
    grid-template-columns: 250px 1fr;
    margin: 1rem;
    background-color: var(--ba-Co);
    border-radius: var(--border-radius);
    border: 10px solid white;
  }
  .mainMovies .moviesBox img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--img-border-radius);
  }
  .mainMovies .moviesBox .moviesText {
    margin: 0.5rem;
  }
  .mainMovies .moviesBox h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }
  .mainMovies .moviesBox h1::before {
    counter-increment: section;
    content: "Top " counter(section) ": ";
  }
  .mainMovies .moviesBox p {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 2rem;
  }
  .indexFooter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: -45rem;
    left: 0px;
    padding: var(--size-16px-1rem);
    background-image: url(./gallery/background/footer.png);
    background-size: 100% 100%;
    width: 100%;
  }
  .indexFooter > .socialLogo > ul,
  .indexFooter .info > ul {
    margin: 1rem;
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    font-family: "Chakra Petch", sans-serif;
    font-style: normal;
    gap: 1rem;
  }
  .indexFooter > .socialLogo a,
  .indexFooter .info a {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-decoration: none;
    font-family: "Funnel Sans", serif;
    font-style: normal;
  }
  .indexFooter > .socialLogo a:hover,
  .indexFooter .info a:hover {
    -webkit-text-decoration: underline white;
            text-decoration: underline white;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo {
    text-shadow: 1px 1px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo a:hover {
    text-shadow: 1px 1px 5px rgb(6, 161, 212);
  }
  .indexFooter h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    color: hsl(0, 100%, 5%);
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-align: center;
  }
}
@media only screen and (max-width: 1160px) {
  body {
    margin: 0.5rem 0 0 0;
    background-color: var(--ba-Co);
  }
  .navBar {
    position: absolute;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    width: clamp(30rem, 2.5vw, 30rem);
    height: var(--size-64px-4rem);
    top: 2.5rem;
    left: 4%;
  }
  .navBar > ul {
    display: inline-flex;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: var(--size-16px-1rem);
  }
  .navBar .are {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
  }
  .navBar .are_Icons {
    display: none;
  }
  .navBar li {
    list-style: none;
  }
  .navBar li a,
  .navBar li summary {
    display: grid;
    top: 0;
    border-radius: var(--border-radius);
    background-color: var(--ba-Co-Tr);
    font-size: clamp(1rem, 2vw, 2rem);
    color: var(--Text-Co-Black);
    width: 100%;
    height: 100%;
    padding: var(--size-16px-1rem);
    text-decoration: none;
    align-content: center;
    text-align: center;
  }
  .navBar li a:hover,
  .navBar li summary:hover {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    cursor: pointer;
  }
  .navBar li details {
    height: 100%;
  }
  .navBar li details > summary {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
  }
  .navBar li details > summary .material-icons {
    font-size: var(--fonts-24px);
  }
  .navBar li details[open] {
    height: 100%;
  }
  .navBar li details[open] > summary {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .navBar li details[open] > summary .material-icons {
    rotate: 180deg;
  }
  .navBar li details[open] .dropDown {
    background-color: var(--ba-Co-drop);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
  }
  .navBar li details[open] .dropDown > li > a {
    border-radius: 0 0 0 0;
  }
  .small_footer {
    position: absolute;
    display: flex;
    background-color: var(--Text-Co-White);
    max-width: 500px;
    border-radius: 0 var(--border-radius);
    right: 0;
    padding: 25px;
    align-items: center;
    box-shadow: -10px 10px 15px var(--ba-Co-DropShadow);
  }
  .small_footer p {
    font-size: clamp(1rem, 2vw, 2.5rem);
    color: black;
  }
  /* Top-left-coroners */
  .small_footer:before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    top: 1px;
    margin-left: -65px;
    border-top-right-radius: var(--custom-border-radius);
    max-width: var(--size-40px);
    height: var(--size-40px);
  }
  .small_footer:before {
    box-shadow: 15px -10px 0 5px #ffffff;
  }
  /* Bottom-right-coroners */
  .small_footer::after {
    content: "";
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    bottom: -64.25px;
    left: 15.8px;
    margin-left: -10px;
    border-top-right-radius: var(--custom-border-radius);
    max-width: var(--size-40px);
    height: var(--size-40px);
  }
  .small_footer::after {
    box-shadow: 20px -10px 0 6px #ffffff;
  }
  .hero_IMG {
    position: relative;
    z-index: -1;
    height: auto;
  }
  .hero_IMG img {
    border: 1px solid var(--ba-Co);
    border-radius: var(--border-radius);
    max-width: 100%;
  }
  .aboveHeroIMG {
    display: inline-flex;
    grid-template-columns: 1fr 1fr;
    position: relative;
    top: -280px;
    padding: 0px;
    gap: var(--gap-16-px);
  }
  .aboveHeroIMG .NaHeroImg {
    display: flex;
    flex-wrap: wrap;
    text-shadow: -2px 2px 1px black;
    width: 50%;
    height: auto;
  }
  .aboveHeroIMG .H1Name,
  .aboveHeroIMG .Introductions > h1 {
    color: var(--Text-Co-White);
    text-shadow: -2px 2px 1px black;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
  }
  .aboveHeroIMG .Introductions {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
  }
  .aboveHeroIMG .Introductions p {
    color: var(--Text-Co-White);
    font-size: clamp(1rem, 2vw, 2rem);
    text-shadow: -2px 2px 1px black;
  }
  .gameCategory {
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 9rem;
    max-width: 46%;
    background-color: var(--ba-Co);
    border-radius: 0 var(--border-radius) 0 0;
  }
  .gameCategory h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.5rem;
  }
  .gameCategory .gameBox {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    overflow: hidden;
    gap: var(--gap-16-px);
  }
  .gameCategory .gameBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  .gameCategory .gameBox h2 {
    font-size: clamp(1.5rem, 1.5vw, 2rem);
  }
  .gameCategory .gameBox p {
    font-size: clamp(1rem, 1vw, 2rem);
    line-height: 1.5rem;
  }
  .gameCategory::after {
    content: "";
    position: absolute;
    border-bottom-left-radius: var(--border-radius);
    width: 50px;
    height: 50px;
    top: -50px;
    margin-left: 1px;
    background-color: rgba(255, 255, 255, 0);
  }
  .gameCategory::after {
    box-shadow: -10px 10px 0px 5px white;
  }
  .articleCategory {
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 17.1rem;
    left: 46%;
    max-width: 100%;
    background-color: var(--ba-Co);
  }
  .articleCategory > h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    text-align: center;
    margin: 1rem;
  }
  .articleCategory .articleBox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    gap: var(--gap-16-px);
  }
  .articleCategory .articleBox > img {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
  }
  .articleCategory .articleText h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    text-align: start;
  }
  .articleCategory .articleText h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  .articleCategory .articleText p {
    font-size: clamp(1rem, 1vw, 2rem);
    line-height: 1.5rem;
  }
  .articleCategory::after {
    content: "";
    position: absolute;
    border-bottom-left-radius: var(--border-radius);
    width: 50px;
    height: 50px;
    top: -50px;
    margin-left: -1px;
    background-color: rgba(255, 255, 255, 0);
  }
  .articleCategory::after {
    box-shadow: -10px 15px 0px 5px white;
    z-index: -1;
  }
  .mainMovies {
    position: relative;
    top: 115rem;
    width: 100%;
    border-top: 5px solid black;
    border-radius: 0;
    background-image: none;
  }
  .mainMovies > h1 {
    font-size: clamp(2.5rem, 2.5vw, 3.5rem);
    text-transform: capitalize;
    text-align: center;
    padding: 1rem;
    color: var(--Text-Co-Black);
  }
  .mainMovies .moviesCategory {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    counter-reset: section;
    gap: 1rem;
  }
  .mainMovies .moviesBox {
    display: grid;
    grid-template-columns: 250px 1fr;
    margin: 1rem;
    background-color: var(--ba-Co-Tr);
  }
  .mainMovies .moviesBox img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--img-border-radius);
  }
  .mainMovies .moviesBox .moviesText {
    margin: 0.5rem;
  }
  .mainMovies .moviesBox h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }
  .mainMovies .moviesBox h1::before {
    counter-increment: section;
    content: "Top " counter(section) ": ";
  }
  .mainMovies .moviesBox p {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 2rem;
  }
  .indexFooter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: -115rem;
    left: 0px;
    padding: var(--size-16px-1rem);
    background-image: url(./gallery/background/footer.png);
    background-size: 100% 100%;
    width: 100%;
  }
  .indexFooter > .socialLogo > ul,
  .indexFooter .info > ul {
    margin: 1rem;
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    font-family: "Chakra Petch", sans-serif;
    font-style: normal;
    gap: 1rem;
  }
  .indexFooter > .socialLogo a,
  .indexFooter .info a {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-decoration: none;
    font-family: "Funnel Sans", serif;
    font-style: normal;
  }
  .indexFooter > .socialLogo a:hover,
  .indexFooter .info a:hover {
    -webkit-text-decoration: underline white;
            text-decoration: underline white;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo {
    text-shadow: 1px 1px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo a:hover {
    text-shadow: 1px 1px 5px rgb(6, 161, 212);
  }
  .indexFooter h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-align: center;
  }
}
@media only screen and (max-width: 920px) {
  body {
    margin: 0;
    background-color: var(--ba-Co);
  }
  .navBar {
    display: grid;
    position: absolute;
    align-content: center;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    width: 100%;
    height: var(--size-80px-5rem);
    top: 0;
    left: 0px;
  }
  .navBar > ul {
    display: inline-flex;
    position: relative;
    width: auto;
    height: auto;
    justify-content: space-evenly;
    padding: 0;
    gap: 0px;
  }
  .navBar .are {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
  }
  .navUl > li {
    list-style: none;
  }
  .navUl > li > a,
  .navUl > li summary {
    display: grid;
    border-radius: var(--border-radius);
    background-color: var(--ba-Co-Tr);
    font-size: clamp(1rem, 2vw, 2rem);
    color: var(--Text-Co-Black);
    width: 100%;
    height: auto;
    padding: clamp(0.5rem, 3vw, 11.5rem);
    text-decoration: none;
    align-content: center;
    text-align: center;
  }
  .navUl > li a:hover,
  .navUl > li summary:hover {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    cursor: pointer;
  }
  .navUl > li details {
    height: 0px;
  }
  .navUl > li details > summary {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
  }
  .navUl > li details > summary .material-icons {
    font-size: var(--fonts-16px);
  }
  .navUl > li details[open] {
    position: relative;
    height: auto;
  }
  .navUl > li details[open] > summary {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .navUl > li details[open] > summary .material-icons {
    rotate: 180deg;
  }
  .navUl > li details[open] .dropDown {
    position: absolute;
    background-color: var(--ba-Co-Tr);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    width: 100%;
  }
  .navUl > li details[open] .dropDown > li > a {
    border-radius: 0 0 0 0;
  }
  .small_footer {
    display: none;
  }
  .aboveHeroIMG {
    display: inline-flex;
    grid-template-columns: 1fr 1fr;
    position: relative;
    top: -200px;
    padding: 0px;
    gap: 0.5rem;
  }
  .aboveHeroIMG .NaHeroImg {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    text-shadow: -2px 2px 1px black;
    width: 50%;
    height: auto;
  }
  .aboveHeroIMG .H1Name,
  .aboveHeroIMG .Introductions > h1 {
    color: var(--Text-Co-White);
    text-shadow: -2px 2px 1px black;
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
  }
  .aboveHeroIMG .Introductions {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
  }
  .aboveHeroIMG .Introductions p {
    color: var(--Text-Co-White);
    font-size: clamp(0.625rem, 2vw, 2rem);
    text-shadow: -2px 2px 1px black;
  }
  .gameCategory {
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 6rem;
    max-width: 46%;
    background-color: var(--ba-Co);
    border-radius: 0 var(--border-radius) 0 0;
  }
  .gameCategory h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.65rem;
  }
  .gameCategory .gameBox {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    overflow: hidden;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  .gameCategory .gameBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  .gameCategory .gameBox h2 {
    font-size: clamp(1rem, 2vw, 2rem);
  }
  .gameCategory .gameBox p {
    font-size: clamp(1rem, 1vw, 2rem);
    line-height: 1.5rem;
  }
  .gameCategory::after {
    content: "";
    position: absolute;
    border-bottom-left-radius: var(--border-radius);
    width: 25px;
    height: 25px;
    top: -25px;
    margin-left: 1px;
    background-color: rgba(255, 255, 255, 0);
  }
  .gameCategory::after {
    box-shadow: -5px 5px 0px 4px white;
  }
  .articleCategory {
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 12.2rem;
    left: 46%;
    max-width: 100%;
    background-color: var(--ba-Co);
  }
  .articleCategory > h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 1rem;
  }
  .articleCategory .articleBox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  .articleCategory .articleBox > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  .articleCategory .articleText h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  .articleCategory .articleText h2 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  .articleCategory .articleText p {
    font-size: clamp(1rem, 1vw, 2rem);
    line-height: 1.5rem;
  }
  .articleCategory::after {
    content: "";
    position: absolute;
    border-bottom-left-radius: var(--border-radius);
    width: 50px;
    height: 50px;
    top: -50px;
    margin-left: -1px;
    background-color: rgba(255, 255, 255, 0);
  }
  .articleCategory::after {
    box-shadow: -10px 15px 0px 5px white;
    z-index: -1;
  }
  .mainMovies {
    position: relative;
    top: 120rem;
    width: 100%;
    border-radius: 0;
    background-image: none;
  }
  .mainMovies > h1 {
    font-size: clamp(2.5rem, 2.5vw, 3.5rem);
    text-transform: capitalize;
    text-align: center;
    padding: 1rem;
    color: var(--Text-Co-Black);
  }
  .mainMovies .moviesCategory {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    counter-reset: section;
    gap: 1rem;
  }
  .mainMovies .moviesBox {
    display: grid;
    grid-template-columns: 1fr;
    margin: 1rem;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    border: 10px solid white;
  }
  .mainMovies .moviesBox img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--img-border-radius);
  }
  .mainMovies .moviesBox .moviesText {
    margin: 0.5rem;
  }
  .mainMovies .moviesBox h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }
  .mainMovies .moviesBox h1::before {
    counter-increment: section;
    content: "Top " counter(section) ": ";
  }
  .mainMovies .moviesBox p {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 2rem;
  }
  .aboutMain {
    top: 6rem;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--size-32px-2rem);
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .aboutMain > h1 {
    color: var(--Text-Co-White);
    text-align: center;
    text-transform: capitalize;
    font-size: clamp(var(--size-24px), 2.5vw, var(--size-48px-3rem));
    padding: var(--size-16px-1rem);
  }
  .aboutBox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .aboutBox .box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    border: 5px solid #fff;
  }
  .aboutBox .box img {
    width: 100%;
    border-radius: var(--border-radius);
  }
  .aboutBox .box .textBox {
    padding: 0.5rem 1rem;
  }
  .aboutBox .box .textBox h2 {
    font-size: clamp(var(--size-24px), 2.5vw, var(--size-40px));
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .aboutBox .box .textBox p {
    font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-32px-2rem));
  }
  .aboutBox .box:nth-child(even) {
    flex-direction: column;
  }
  .indexFooter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: -120rem;
    left: 0px;
    padding: var(--size-16px-1rem);
    background-image: url(./gallery/background/footer.png);
    background-size: 100% 100%;
    width: 100%;
  }
  .indexFooter > .socialLogo > ul,
  .indexFooter .info > ul {
    margin: 1rem;
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    font-family: "Chakra Petch", sans-serif;
    font-style: normal;
    gap: 1rem;
  }
  .indexFooter > .socialLogo a,
  .indexFooter .info a {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-decoration: none;
    font-family: "Funnel Sans", serif;
    font-style: normal;
  }
  .indexFooter > .socialLogo a:hover,
  .indexFooter .info a:hover {
    -webkit-text-decoration: underline white;
            text-decoration: underline white;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo {
    text-shadow: 1px 1px 10px var(--Text-Co-White);
  }
  .indexFooter .socialLogo a:hover {
    text-shadow: 1px 1px 5px rgb(6, 161, 212);
  }
  .indexFooter h1 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    text-transform: capitalize;
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-align: center;
  }
}
@media only screen and (max-width: 520px) {
  body.index-page {
    margin: 0px;
    background-color: var(--ba-Co);
  }
  body.index-page .navBar {
    display: grid;
    position: fixed;
    align-content: center;
    background-color: var(--ba-Co-Tr-Ph);
    border-radius: 0px;
    width: 100%;
    height: 60px;
    top: auto;
    bottom: 0;
    left: 0px;
    z-index: 10;
  }
  body.index-page .navBar > ul {
    display: inline-flex;
    position: relative;
    width: auto;
    height: auto;
    justify-content: space-evenly;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  body.index-page .navBar .are {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
  }
  body.index-page .navBar .navUl > li {
    list-style: none;
  }
  body.index-page .navBar .navUl > li > li > a,
  body.index-page .navBar .navUl > li > summary {
    display: grid;
    border-radius: var(--border-radius);
    background-color: var(--ba-Co-Tr);
    font-size: clamp(1rem, 2vw, 2rem);
    color: var(--Text-Co-Black);
    width: 100%;
    height: auto;
    padding: 0.5rem;
    text-decoration: none;
    align-content: center;
    text-align: center;
  }
  body.index-page .navBar .navUl > li a:hover,
  body.index-page .navBar .navUl > li summary:hover {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    cursor: pointer;
  }
  body.index-page .navBar .navUl > li details {
    rotate: 180deg;
    height: 100%;
  }
  body.index-page .navBar .navUl > li details > summary {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
    rotate: 180deg;
  }
  body.index-page .navBar .navUl > li details > summary .material-icons {
    font-size: var(--fonts-16px);
    rotate: 180deg;
  }
  body.index-page .navBar .navUl > li details[open] {
    height: auto;
  }
  body.index-page .navBar .navUl > li details[open] > summary {
    position: relative;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
  body.index-page .navBar .navUl > li details[open] > summary .material-icons {
    rotate: 0deg;
  }
  body.index-page .navBar .navUl > li details[open] .dropDown {
    background-color: var(--ba-Co-drop);
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    rotate: 180deg;
  }
  body.index-page .navBar .navUl > li details[open] .dropDown > li > a {
    border-radius: 0;
  }
  body.index-page .hero_IMG {
    position: relative;
    z-index: -1;
  }
  body.index-page .hero_IMG img {
    border: 1px solid var(--ba-Co);
    border-radius: 0px;
    max-width: 100%;
    height: 400px;
  }
  body.index-page .aboveHeroIMG {
    display: inline-flex;
    grid-template-columns: none;
    flex-direction: column;
    position: relative;
    top: -190px;
    padding: 0 0.5rem 0 0.5rem;
    gap: 0.5rem;
  }
  body.index-page .aboveHeroIMG .NaHeroImg {
    text-shadow: -2px 2px 1px black;
    width: 100%;
    height: auto;
  }
  body.index-page .aboveHeroIMG .H1Name,
  body.index-page .aboveHeroIMG .Introductions > h1 {
    color: var(--Text-Co-White);
    text-shadow: -2px 2px 1px black;
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
  }
  body.index-page .aboveHeroIMG .Introductions {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  body.index-page .aboveHeroIMG .Introductions p {
    line-height: var(--size-16px-1rem);
    color: var(--Text-Co-White);
    font-size: clamp(0.625rem, 2vw, 2rem);
    text-shadow: -2px 2px 1px black;
  }
  body.index-page .gameCategory {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: 3rem;
    max-width: 100%;
    background-color: var(--ba-Co);
    border-radius: 0;
  }
  body.index-page .gameCategory h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.65rem;
  }
  body.index-page .gameCategory .gameBox {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    padding-bottom: 1rem;
    overflow: hidden;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  body.index-page .gameCategory .gameBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  body.index-page .gameCategory .gameBox h2 {
    font-size: clamp(0.8rem, 2vw, 2rem);
  }
  body.index-page .gameCategory .gameBox p {
    font-size: clamp(0.625rem, 2vw, 2rem);
    line-height: 1rem;
  }
  body.index-page .gameCategory::after {
    display: none;
  }
  body.index-page .articleCategory {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: 3rem;
    left: 0%;
    max-width: 100%;
    background-color: var(--ba-Co);
  }
  body.index-page .articleCategory > h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.65rem;
  }
  body.index-page .articleCategory .articleBox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  body.index-page .articleCategory .articleBox > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  body.index-page .articleCategory .articleText h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  body.index-page .articleCategory .articleText h2 {
    font-size: clamp(0.8rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  body.index-page .articleCategory .articleText p {
    font-size: clamp(0.625rem, 2vw, 2rem);
    line-height: 1rem;
  }
  body.index-page .articleCategory::after {
    display: none;
  }
  body.index-page .articleCategory::before {
    display: none;
  }
  body.index-page .mainMovies {
    position: relative;
    top: -8rem;
    width: 100%;
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  body.index-page .mainMovies > h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    padding: 1rem;
    color: var(--Text-Co-White);
  }
  body.index-page .mainMovies .moviesCategory {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0rem;
    counter-reset: section;
    gap: 0rem;
  }
  body.index-page .mainMovies .moviesBox {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    background-color: var(--ba-Co);
    border-radius: var(--border-radius);
    border: 10px solid white;
  }
  body.index-page .mainMovies .moviesBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--img-border-radius);
  }
  body.index-page .mainMovies .moviesBox .moviesText {
    margin: 0.5rem;
  }
  body.index-page .mainMovies .moviesBox h1 {
    font-size: clamp(1rem, 2vw, 2rem);
  }
  body.index-page .mainMovies .moviesBox h1::before {
    counter-increment: section;
    content: "Top " counter(section) ": ";
  }
  body.index-page .mainMovies .moviesBox p {
    font-size: clamp(0.625rem, 2vw, 2rem);
    line-height: 1rem;
  }
  body.index-page .indexFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: 53px;
    left: 0px;
    padding: var(--size-16px-1rem);
    background-image: url(./gallery/background/footer.png);
    background-size: 100% 100%;
    width: 100%;
  }
  body.index-page .indexFooter > .socialLogo > ul,
  body.index-page .indexFooter .info > ul {
    margin: 1rem;
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    font-family: "Chakra Petch", sans-serif;
    font-style: normal;
    gap: 0.5rem;
  }
  body.index-page .indexFooter > .socialLogo a,
  body.index-page .indexFooter .info a {
    font-size: clamp(0.8rem, 2vw, 2rem);
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-decoration: none;
    font-family: "Funnel Sans", serif;
    font-style: normal;
  }
  body.index-page .indexFooter > .socialLogo a:hover,
  body.index-page .indexFooter .info a:hover {
    -webkit-text-decoration: underline white;
            text-decoration: underline white;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
  }
  body.index-page .indexFooter .socialLogo {
    text-shadow: 1px 1px 10px var(--Text-Co-White);
  }
  body.index-page .indexFooter .socialLogo a:hover {
    text-shadow: 1px 1px 5px rgb(6, 161, 212);
  }
  body.index-page .indexFooter h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-align: center;
  }
  body.other-page {
    margin: 0px;
    background-color: var(--ba-Co);
  }
  body.other-page .navBar {
    display: grid;
    position: fixed;
    align-content: center;
    background-color: var(--ba-Co-Tr-Ph);
    border-radius: 0px;
    width: 100%;
    height: 60px;
    top: auto;
    bottom: 0;
    left: 0px;
    z-index: 10;
  }
  body.other-page .navBar > ul {
    display: inline-flex;
    position: relative;
    width: auto;
    height: auto;
    justify-content: space-evenly;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  body.other-page .navBar .are {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
  }
  body.other-page .navBar .navUl > li {
    list-style: none;
  }
  body.other-page .navBar .navUl > li > li > a,
  body.other-page .navBar .navUl > li > summary {
    display: grid;
    border-radius: var(--border-radius);
    background-color: var(--ba-Co-Tr);
    font-size: clamp(1rem, 2vw, 2rem);
    color: var(--Text-Co-Black);
    width: 100%;
    height: auto;
    padding: 0.5rem;
    text-decoration: none;
    align-content: center;
    text-align: center;
  }
  body.other-page .navBar .navUl > li a:hover,
  body.other-page .navBar .navUl > li summary:hover {
    background-color: var(--Text-Co-Black);
    color: var(--Text-Co-White);
    cursor: pointer;
  }
  body.other-page .navBar .navUl > li details {
    rotate: 180deg;
    height: 100%;
  }
  body.other-page .navBar .navUl > li details > summary {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
    rotate: 180deg;
  }
  body.other-page .navBar .navUl > li details > summary .material-icons {
    font-size: var(--fonts-16px);
    rotate: 180deg;
  }
  body.other-page .navBar .navUl > li details[open] {
    height: auto;
  }
  body.other-page .navBar .navUl > li details[open] > summary {
    position: relative;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
  body.other-page .navBar .navUl > li details[open] > summary .material-icons {
    rotate: 0deg;
  }
  body.other-page .navBar .navUl > li details[open] .dropDown {
    background-color: var(--ba-Co-drop);
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    rotate: 180deg;
  }
  body.other-page .navBar .navUl > li details[open] .dropDown > li > a {
    border-radius: 0;
  }
  body.other-page .hero_IMG {
    position: relative;
    z-index: -1;
  }
  body.other-page .hero_IMG img {
    border: 1px solid var(--ba-Co);
    border-radius: 0px;
    max-width: 100%;
    height: auto;
  }
  body.other-page .hero_IMG video {
    border: 1px solid var(--ba-Co);
    border-radius: 0px;
    max-width: 100%;
    height: auto;
  }
  body.other-page .aboveHeroIMG {
    display: inline-flex;
    grid-template-columns: none;
    flex-direction: column;
    position: relative;
    top: -190px;
    padding: 0 0.5rem 0 0.5rem;
    gap: 0.5rem;
  }
  body.other-page .aboveHeroIMG .NaHeroImg {
    text-shadow: -2px 2px 1px black;
    width: 100%;
    height: auto;
  }
  body.other-page .aboveHeroIMG .H1Name,
  body.other-page .aboveHeroIMG .Introductions > h1 {
    color: var(--Text-Co-White);
    text-shadow: -2px 2px 1px black;
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
  }
  body.other-page .aboveHeroIMG .Introductions {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  body.other-page .aboveHeroIMG .Introductions p {
    line-height: var(--size-16px-1rem);
    color: var(--Text-Co-White);
    font-size: clamp(0.625rem, 2vw, 2rem);
    text-shadow: -2px 2px 1px black;
  }
  body.other-page .gameCategory {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: 3rem;
    max-width: 100%;
    background-color: var(--ba-Co);
    border-radius: 0;
  }
  body.other-page .gameCategory h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.65rem;
  }
  body.other-page .gameCategory .gameBox {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0.5rem;
    padding-bottom: 1rem;
    overflow: hidden;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  body.other-page .gameCategory .gameBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  body.other-page .gameCategory .gameBox h2 {
    font-size: clamp(0.8rem, 2vw, 2rem);
  }
  body.other-page .gameCategory .gameBox p {
    font-size: clamp(0.625rem, 2vw, 2rem);
    line-height: 1rem;
  }
  body.other-page .gameCategory::after {
    display: none;
  }
  body.other-page .articleCategory {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: 3rem;
    left: 0%;
    max-width: 100%;
    background-color: var(--ba-Co);
  }
  body.other-page .articleCategory > h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: center;
    margin: 0.65rem;
  }
  body.other-page .articleCategory .articleBox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin: 0.5rem;
    padding-bottom: 1rem;
    gap: var(--gap-16-px);
    border-bottom: 1px solid #000000;
  }
  body.other-page .articleCategory .articleBox > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  body.other-page .articleCategory .articleText h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  body.other-page .articleCategory .articleText h2 {
    font-size: clamp(0.8rem, 2vw, 2rem);
    text-transform: capitalize;
    text-align: start;
  }
  body.other-page .articleCategory .articleText p {
    font-size: clamp(0.625rem, 2vw, 2rem);
    line-height: 1rem;
  }
  body.other-page .articleCategory::after {
    display: none;
  }
  body.other-page .articleCategory::before {
    display: none;
  }
  body.other-page .mainIMG {
    top: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--size-32px-2rem);
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  body.other-page .mainIMG > h1 {
    color: var(--Text-Co-White);
    text-align: center;
    font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
    padding: var(--size-16px-1rem);
  }
  body.other-page .imgGallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  body.other-page .imgGallery .boxImg {
    display: flex;
    border: 1px solid var(--Text-Co-White);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 500px;
    height: 100%;
    justify-content: center;
    text-align: center;
    align-items: end;
  }
  body.other-page .imgGallery .boxImg .imgH {
    position: absolute;
    font-size: 0px;
    opacity: 0;
    transition: 0.8s ease-in;
  }
  body.other-page .imgGallery .boxImg img {
    border-radius: var(--border-radius);
    width: 100%;
    display: block;
    transition: 0.5s ease-in-out;
    filter: grayscale(100%);
  }
  body.other-page .imgGallery .boxImg:hover img {
    filter: grayscale(0%);
    cursor: pointer;
  }
  body.other-page .imgGallery .boxImg:hover .imgH {
    display: flex;
    position: absolute;
    margin-bottom: 2rem;
    width: auto;
    text-transform: capitalize;
    opacity: 1;
    font-size: clamp(0.5rem, 2.5vw, 1.5rem);
    color: var(--Text-Co-White);
    z-index: 1;
  }
  body.other-page .mainVideo {
    top: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--size-32px-2rem);
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  body.other-page .mainVideo > h1 {
    color: var(--Text-Co-White);
    text-align: center;
    font-size: clamp(var(--size-16px-1rem), 2.5vw, var(--size-48px-3rem));
    padding: var(--size-16px-1rem);
  }
  body.other-page .videoGallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  body.other-page .videoGallery .boxVideo {
    display: flex;
    border: 1px solid var(--Text-Co-White);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 500px;
    height: 100%;
    justify-content: center;
    text-align: center;
    align-items: end;
  }
  body.other-page .videoGallery .boxVideo .imgH {
    position: absolute;
    width: auto;
    font-size: clamp(0.5rem, 3vw, 2rem);
    opacity: 0;
    transition: 0.8s ease-in-out;
    cursor: pointer;
  }
  body.other-page .videoGallery .boxVideo video {
    border-radius: var(--border-radius);
    width: 100%;
    display: block;
    transition: 0.5s ease-in-out;
    filter: grayscale(100%);
  }
  body.other-page .videoGallery .boxVideo video:hover {
    filter: grayscale(0%);
    cursor: pointer;
  }
  body.other-page .videoGallery .boxVideo #video:hover ~ .imgH {
    display: flex;
    position: absolute;
    margin-bottom: 2rem;
    width: auto;
    text-transform: capitalize;
    opacity: 1;
    font-size: clamp(0.5rem, 2.5vw, 1.5rem);
    color: var(--Text-Co-White);
    z-index: 1;
  }
  body.other-page .aboutMain {
    top: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--size-16px-1rem);
    border-radius: var(--border-radius);
    background-image: url(./gallery/background/movie.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  body.other-page .aboutMain > h1 {
    color: var(--Text-Co-White);
    text-align: center;
    text-transform: capitalize;
    font-size: clamp(var(--size-16px-1rem), 1.5vw, var(--size-32px-2rem));
    padding: var(--size-16px-1rem);
  }
  body.other-page .aboutBox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  body.other-page .aboutBox .box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    background-color: var(--ba-Co-Tr);
    border-radius: var(--border-radius);
    border: 5px solid #fff;
  }
  body.other-page .aboutBox .box img {
    width: 100%;
    border-radius: var(--border-radius);
  }
  body.other-page .aboutBox .box .textBox {
    padding: 0.5rem 1rem;
  }
  body.other-page .aboutBox .box .textBox h2 {
    font-size: clamp(var(--size-16px-1rem), 2vw, var(--size-32px-2rem));
    text-align: center;
  }
  body.other-page .aboutBox .box .textBox p {
    font-size: clamp(0.625rem, 2vw, var(--size-32px-2rem));
  }
  body.other-page .aboutBox .box:nth-child(even) {
    flex-direction: column;
  }
  body.other-page .mainHistory {
    position: relative;
    height: 100%;
    top: 1rem;
    border-radius: 0;
    background-image: url(./gallery/img/wp12964088-sci-fi-scenery-wallpapers.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  body.other-page .mainHistory > h1 {
    color: var(--Text-Co-White);
    text-align: center;
    text-transform: capitalize;
    font-size: clamp(var(--size-16px-1rem), 1.5vw, var(--size-32px-2rem));
    padding: var(--size-16px-1rem);
  }
  body.other-page .historySection {
    height: 100%;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.137);
    background-color: rgba(255, 255, 255, 0.137);
    display: flex;
    flex-direction: column;
  }
  body.other-page .historySection .historyBox {
    display: flex;
    justify-items: center;
    align-items: start;
    margin: 0 0 var(--size-16px-1rem) 0;
  }
  body.other-page .historySection .historyBox .cirkel {
    display: none;
  }
  body.other-page .historySection .historyBox .text {
    padding: 1.5rem;
    border-radius: 0;
    background-color: var(--ba-Co-Tr);
  }
  body.other-page .historySection .historyBox .historyH {
    font-size: clamp(var(--size-16px-1rem), 2vw, var(--size-32px-2rem));
    text-transform: capitalize;
  }
  body.other-page .historySection .historyBox .historyText {
    font-size: clamp(0.625rem, 2vw, var(--size-32px-2rem));
    line-height: 1rem;
  }
  body.other-page .historySection .text:hover {
    box-shadow: none;
  }
  body.other-page .historySection::before {
    display: none;
  }
  body.other-page .galleryFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    list-style: none;
    text-decoration: none;
    padding: var(--size-16px-1rem);
    background-image: url(./gallery/background/footer.png);
    background-size: 100% 100%;
    width: 100%;
  }
  body.other-page .galleryFooter > .socialLogo > ul,
  body.other-page .galleryFooter .info > ul {
    margin: 1rem;
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    font-family: "Chakra Petch", sans-serif;
    font-style: normal;
    gap: 2rem;
  }
  body.other-page .galleryFooter > .socialLogo a,
  body.other-page .galleryFooter .info a {
    font-size: clamp(0.8rem, 2vw, 2rem);
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-decoration: none;
    font-family: "Funnel Sans", serif;
    font-style: normal;
  }
  body.other-page .galleryFooter > .socialLogo a:hover,
  body.other-page .galleryFooter .info a:hover {
    -webkit-text-decoration: underline white;
            text-decoration: underline white;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
  }
  body.other-page .galleryFooter .socialLogo {
    text-shadow: 1px 1px 10px var(--Text-Co-White);
  }
  body.other-page .galleryFooter .socialLogo a:hover {
    text-shadow: 1px 1px 5px rgb(6, 161, 212);
  }
  body.other-page .galleryFooter h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    text-transform: capitalize;
    color: hsl(0, 100%, 5%);
    font-weight: 600;
    text-shadow: 0px 2px 10px var(--Text-Co-White);
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */