@font-face {
  font-family: 'Prompt';
  src: url('Prompt-Regular.ttf');
}

body {
  background-color: #222831;
  color: #fff;
  font-family: Prompt;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

header {
  background-color: #222831;
  padding: 20px;
  text-align: center;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  header {
    padding: 20px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  header {
    padding: 20px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  header {
    padding: 60px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  header {
    padding: 80px;
  }
}

footer {
  background-color: #222831;
  padding: 0px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
}

.footer-text {
  font-size: 16px;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .footer-text {
    font-size: 12px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .footer-text {
    font-size: 16px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .footer-text {
    font-size: 22px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .footer-text {
    font-size: 34px;
  }
}

.footer-icon {
  width: 30px;
  height: 30px;
  padding-right: 10px;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .footer-icon {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .footer-icon {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .footer-icon {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .footer-icon {
    width: 90px;
    height: 90px;
  }
}

.game-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin: 20px;
  margin-bottom: 20px;
  overflow-x: hidden;
}

.game-card {
  background-color: #393E46;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .game-card {
    min-width: 450px;
    height: 560px;
    padding: 10px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .game-card {
    min-width: 600px;
    height: 750px;
    padding: 10px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .game-card {
    min-width: 800px;
    height: 1030px;
    padding: 20px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .game-card {
    min-width: 1900px;
    height: 1560px;
    padding: 20px;
  }
}

.game-image {
  max-width: 500px;
  height: auto;
  margin-top: 30px;
  margin-bottom: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .game-image {
    max-width: 400px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .game-image {
    max-width: 500px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .game-image {
    max-width: 700px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .game-image {
    max-width: 1200px;
  }
}

.logo-image {
  max-width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.download-button {
  background-color: #808080;
  border: none;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 5%;
}

.download-button:hover {
  background-color: #6b6b6b;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .download-button {
    max-width: 500px;
    font-size: 14px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .download-button {
    max-width: 500px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .download-button {
    max-width: 900px;
    font-size: 28px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .download-button {
    max-width: 3000px;
    font-size: 48px;
  }
}

.download-button-main {
  background-color: #00ADB5;
  border: none;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 5%;
}

.download-button-main:hover {
  background-color: #018e96;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .download-button-main {
    max-width: 500px;
    font-size: 14px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .download-button-main {
    max-width: 500px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .download-button-main {
    max-width: 900px;
    font-size: 28px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .download-button-main {
    max-width: 3000px;
    font-size: 48px;
  }
}

.download-button-disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #4a4a4a;
  border: none;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 5%;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .download-button-disabled {
    max-width: 500px;
    font-size: 14px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .download-button-disabled {
    max-width: 500px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .download-button-disabled {
    max-width: 900px;
    font-size: 28px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .download-button-disabled {
    max-width: 3000px;
    font-size: 48px;
  }
}

.header {
  position: relative;
  padding: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-image {
  max-width: 200px;
  margin-top: -20px;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .logo-image {
    max-width: 150px;
    margin-top: -20px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .logo-image {
    max-width: 200px;
    margin-top: 20px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .logo-image {
    max-width: 300px;
    margin-top: -20px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .logo-image {
    max-width: 600px;
    margin-top: -20px;
  }
}

.header-search {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .header-search {
    top: 16px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .header-search {
    top: 20px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .header-search {
    top: 80px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .header-search {
    top: 140px;
  }
}

.search-input {
  border: none;
  background-color: transparent;
  color: #fff;
  font-family: Prompt;
  font-size: 16px;
  padding: 10px;
  border-bottom: 1px solid #fff;
  margin-right: 10px;
  outline: none;
  width: 200px;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .search-input {
    font-size: 14px;
    width: 100px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .search-input {
    font-size: 16px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .search-input {
    font-size: 26px;
    width: 300px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .search-input {
    font-size: 44px;
    width: 400px;
  }
}

.search-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.search-icon {
  color: #fff;
  font-size: 20px;
}

.suggestion-box {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: #393E46;
  border-radius: 5px;
  z-index: 1;
  display: none;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  .search-input {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  .suggestion-box {
    font-size: 16px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  .suggestion-box {
    font-size: 26px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  .suggestion-box {
    font-size: 44px;
  }
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  color: #fff;
}

.suggestion-item:hover {
  background-color: #808080;
}

h1 {
  margin: 0;
}

h2,
h3 {
  margin-bottom: 10px;
}

h2 {
  margin-top: 50px;
  font-size: 40px;
/*   text-decoration: underline; */
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  h2 {
    font-size: 26px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  h2 {
    font-size: 40px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  h2 {
    font-size: 56px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  h2 {
    font-size: 120px;
  }
}

h3 {
  margin-top: 0px;
  font-weight: 400;
}

@media (max-width: 1366px) {

  /* Styles for resolutions up to 1366 (1366x768) */
  h3 {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {

  /* Styles for resolutions above 1K (1920x1080) */
  h3 {
    font-size: 20px;
  }
}

@media (min-width: 2560px) {

  /* Styles for resolutions above 2K (2560x1440) */
  h3 {
    font-size: 32px;
  }
}

@media (min-width: 3840px) {

  /* Styles for 4K (3840x2160) resolutions */
  h3 {
    font-size: 56px;
  }
}

label[for="search-input"] {
  display: none;
}
