* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  word-wrap: break-word;
  list-style-type: none;
  text-decoration: none;
}

ul {
  list-style: none;
  list-style-type: none;
}

html {
  font-size: 62.5%;
  font-family: system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.vsc-controller {
  display: none;
}

#flying_bird {
  position: absolute;
  width: 7rem;
  height: 7rem;
  image-rendering: pixelated;
  top: 10%;
  animation: moveRight 15s linear infinite;
  transform: translateX(-100%);
}

@keyframes moveRight {
  0% {
    left: -20rem;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.header {
  padding: 2rem;
  background-color: rgb(23, 26, 33);
}
.header__nav {
  display: flex;
  gap: 2rem;
  padding: 0 10rem;
  justify-content: center;
}
.header__nav a {
  color: white;
}

.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
  padding-top: 3rem;
  padding-bottom: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #3e465d;
}
.main__title {
  color: white;
}
.main__heroContainer {
  display: flex;
  gap: 2rem;
  width: 86rem;
  margin-top: 0.5rem;
  border-radius: 1rem;
}
.main__heroContainer__gallery {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 62%;
}
.main__heroContainer__gallery #heroImg {
  display: none;
  object-fit: contain;
  width: 100%;
  border-radius: 0.25rem;
}
.main__heroContainer__gallery #heroVideo {
  object-fit: contain;
  width: 100%;
  border-radius: 0.25rem;
}
.main__heroContainer__gallery__list {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  max-width: 100%;
}
.main__heroContainer__gallery__list__item {
  position: relative;
}
.main__heroContainer__gallery__list__item .playButten {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 36%;
  left: 42%;
  z-index: 10;
  color: white;
  pointer-events: none;
}
.main__heroContainer__gallery__list__item__img {
  height: 8.5rem;
  object-fit: contain;
  border-radius: 0.25rem;
  cursor: pointer;
}
.main__heroContainer__gameOverview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.main__heroContainer__gameOverview__img {
  width: 100%;
  border-radius: 0.25rem;
}
.main__heroContainer__gameOverview__text {
  font-size: 1.4rem;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}
.main__heroContainer__gameOverview__genre {
  padding-left: 1rem;
  padding-right: 1rem;
}
.main__heroContainer__gameOverview__genre__title {
  color: white;
}
.main__heroContainer__gameOverview__genre__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 1rem;
}
.main__heroContainer__gameOverview__genre__list__item {
  font-size: 1.3rem;
  background-color: rgb(35, 40, 61);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
}
.main__heroContainer__gameOverview__play {
  display: flex;
  justify-content: space-between;
  margin-left: 1rem;
  margin-right: 1rem;
}
.main__heroContainer__gameOverview__play__form {
  width: 45%;
  height: 100%;
}
.main__heroContainer__gameOverview__play__form__btn {
  font-size: 1.4rem;
  background-color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  width: 100%;
}
.main__heroContainer__gameOverview__play__btn {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background-color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 1rem;
  width: 45%;
}
.main__creditContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}
.main__creditContainer__devTeam {
  font-size: 1.4rem;
  padding-top: 3rem;
}
.main__creditContainer__devTeam__title {
  font-size: 2.1rem;
}
.main__creditContainer__devTeam__roleList {
  font-size: 1.6rem;
  color: #e6ecec;
}
.main__creditContainer__devTeam__roleList__role {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  color: white;
}
.main__creditContainer__devTeam__roleList__role .peopleList {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.main__creditContainer__devTeam__roleList__role .peopleList .peopleList__person:hover .contactInfo {
  display: block;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person {
  position: relative;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person__name {
  color: #57a5f4;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person a {
  color: #0073e6;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person strong {
  font-size: 1.3rem;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person h4 {
  padding-bottom: 1.5rem;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person .contactInfo {
  display: none;
  position: absolute;
  z-index: 99;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background-color: rgb(23, 26, 33);
  color: white;
  border: 0.1rem solid #ccc;
  border-radius: 0.5rem;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 3s;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person .contactInfo__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  color: white;
}
.main__creditContainer__devTeam__roleList__role .peopleList__person .contactInfo__list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 0.5rem;
}
.main__creditContainer__thankYouNote {
  max-width: 30rem;
  padding-top: 3rem;
}
.main__creditContainer__thankYouNote__text {
  color: #e6ecec;
}
.main__creditContainer a {
  color: #57a5f4;
}
.main__creditContainer h1 {
  font-size: 3rem;
}
.main__creditContainer h3 {
  font-size: 1.6rem;
}

@media screen and (max-width: 900px) {
  .main {
    display: block;
  }
  .main__heroContainer {
    width: 100%;
    gap: 5rem;
  }
  .main__heroContainer {
    flex-direction: column-reverse;
  }
  .main__heroContainer__gallery {
    width: 100%;
  }
  .main__heroContainer__gallery__list__item__img {
    height: 12rem !important;
  }
}
.main__heroContainer__gallery__list::-webkit-scrollbar {
  height: 0.5rem;
}

.main__heroContainer__gallery__list::-webkit-scrollbar-track {
  border-radius: 0.5rem;
  background-color: #e7e7e7;
}

.main__heroContainer__gallery__list::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #888888;
}

/* General footer styles */
.footer {
  background-color: rgb(23, 26, 33);
  padding: 4rem;
  text-align: center;
  font-family: Arial, sans-serif;
}
.footer a:hover {
  text-decoration: underline;
}
.footer a {
  color: #0073e6;
}
.footer p {
  color: #c9c9c9;
  line-height: 1.6;
  margin: 5px 0;
}
.footer__contactInfoContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer__contactInfoContainer .ContactInfo {
  display: flex;
  flex-direction: column;
  color: white;
  width: 30rem;
  margin-bottom: 4rem;
}
.footer__contactInfoContainer .ContactInfo__title {
  font-size: 2.5rem;
}
.footer__contactInfoContainer .ContactInfo__address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}
.footer__contactInfoContainer .ContactInfo__socialMedia__title {
  font-size: 1.8rem;
}
.footer__contactInfoContainer .ContactInfo__socialMedia__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.footer__contactInfoContainer .ContactInfo__socialMedia__list .socialMediaImg {
  color: white;
  width: 5rem;
}
.footer__disclaimer {
  font-size: 1.5rem;
  color: #888;
  margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */
