* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Dosis", sans-serif;
  text-decoration: none;
}

:root {
  --blue: #1e90ff;
  --rounded: 15px;
  --border-color: #ebecf2;
  --text-color: #a5a4ad;
  --btn_bg: #4285f4;
  --btn-text-colo: #f4f4f8;
  --btn-boxShadow: 2px 2px 14px rgb(0 0 0 / 40%);
  --div-boxShadow: rgba(0, 0, 0, 0.25) 0px 12px 22px -12px;
}

.app-wrapper-container {
  background-image: url(/images/assets/background.jpg);
  height: 100vh;
  width: 100%;
  background-size: cover;
  overflow-x: hidden;
  background-position: center;
  display: flex;
  justify-content: center;
}

#main_div {
  width: 360px;
  height: 100%;
  position: relative;
  background-color: white;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header {
  width: 100%;
  background-color: #e8f0fe;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  padding: 7px 16px 7px 16px;
}

.header img {
  /* margin: 9px; */
  /* width: 35px; */
  /* height: 26px; */
}

.pokii_game_section {
  /* padding: 16px; */
  text-align: center;
}

.play_btn {
  background-color: white;
  margin: 16px 16px 0 16px;
  padding: 16px;
  border-radius: var(--rounded);
  border: 1px solid var(--border-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0 12px 22px -12px;
}

.play_btn_txt {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
}

.play_btn_txt1 {
  font-size: 24px;
}

.click_btn {
  background-color: var(--btn_bg);
  margin-top: 20px;
  padding: 10px 28px 10px 28px;
  font-size: 16px;
  color: var(--btn-text-colo);
  border-radius: 12px;
  box-shadow: var(--btn-boxShadow);
  border: none;
}

.click_btn1 {
  width: 100%;
}

.choose_game {
  margin: 16px 16px 0 16px;
  background-color: white;
  padding: 16px;
  border-radius: var(--rounded);
  border: 1px solid var(--border-color);
  /* margin-top: 16px; */
  box-shadow: var(--div-boxShadow);
}

.class_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

#goto_top {
  width: 100%;
  margin-bottom: 16px;
}

.game_section {
  margin-top: 16px;
}
.game_section1 {
  margin: 0 16px 0 16px;
  padding: 4px 0 4px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  justify-items: center;
}

.game_section2 {
  border-radius: 25px;
  background-color: white;
  border: 1px solid var(--border-color);
  box-shadow: var(--div-boxShadow);
}

.game_section3 {
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  height: 100%;
  width: 100%;
}

.game_section4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game_section5 {
  background-color: white;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.game_section5 button {
  background-color: var(--btn_bg);
  padding: 10px 40px 10px 40px;
  font-size: 14.4px;
  color: var(--btn-text-colo);
  border-radius: 12px;
  margin-bottom: 4px;
  border: none;
}

.game_section6 {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.game_section6 p {
  margin-bottom: 0px;
  text-align: start;
  text-transform: uppercase;
}

.game_section_img {
  width: 100%;
  height: 160px;
  border-radius: 4px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.more_game {
  padding: 0 16px 0 16px;
}

button {
  cursor: pointer;
}

.anchor_text {
  color: black;
}

/* a {
    text-decoration: none;
    color: white;
}*/

.anchor_text:hover {
  color: #4285f4;
}

.privacytext:hover {
  text-decoration: underline;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 16px 7px 16px;

  background-color: #e8f0fe;
  color: white;
  width: 100%;
  /* padding: 10px 10px; */
}

.thankyou_img {
  width: 90px;
  height: 90px;
}

.about_section {
  margin-top: 20px;
  padding: 0 16px 16px 16px;
}

.about_section h1 {
  margin: auto;
  color: var(--text-color);
}

.about_section p {
  text-align: start;
  color: #888;
  font-size: 16px;
}

@media (max-width: 500px) {
  #main_div {
    width: 100%;
  }

  .game_section2 {
    width: 170px;
  }
}

@media (max-width: 280px) {
  .game_section5 button {
    text-wrap: nowrap;
    padding: 10px 20px 10px 20px;
  }

  .click_btn {
    text-wrap: nowrap;
    font-size: 12px;
  }

  .class_flex {
    gap: 4px;
  }

  .game_section_img {
    height: 130px;
  }
}

@media (max-width: 346px) {
  .class_flex {
    gap: 4px;
    text-wrap: nowrap;
  }

  .game_section5 button {
    text-wrap: nowrap;
    padding: 10px 30px 10px 30px;
  }
}

@media (max-width: 380px) {
  .game_section2 {
    width: 100%;
  }
}

#target {
  text-align: center;
  color: rgba(110, 125, 255, 0.8);
  padding: 10px;
  font-size: 20px;
  margin: 20px 15px;
  border-radius: 10px;
  font-weight: 600;
}
