@import "styles/normalize.css";
@import "styles/footer_header.css";
@import "styles/main.css";
:root {
  --shadow: 2px 2px 4px 4px rgba(34, 60, 80, 0.2);
  --shadow2: 5px 1.2rem 1rem 1rem rgba(250, 253, 255, 0.2);
  --text-shadow: 1px 1px white, 2px 2px #080808;
  --text-shadow-dark: 2px 2px 2px black;

  --text-shadow-for-dark: 2px 2px 0px #fff, 5px 5px 0px rgba(0, 0, 0, 0.15);
  --shadow-inset: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/Lato-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/Lato-Bold.ttf") format("ttf");
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/WorkSans-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/WorkSans-Bold.ttf") format("ttf");
}

* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

html {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 1.2rem;
  width: 1.2rem;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: rgb(218, 228, 245);
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background: rgb(27, 92, 204);
  border-radius: 1.5rem;
  border: 3px solid white;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #f2ebeb;
  font-family: "Lato";
}

.main {
  width: 100%;
  min-height: calc(100vh - 160px);
  overflow-x: hidden;
}

.wrapper_grabgo {
  width: 85%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
}

@media (max-width: 1000px) {
  .wrapper_grabgo {
    width: 95%;
  }
}

@media (max-width: 700px) {
  .wrapper2_grabgo {
    width: 90%;
  }
}
a,
button {
  cursor: pointer;
  text-decoration: none;
}
h3 {
  font-size: 1.8rem;
}

/******************************  GENERAL TITLE PAGE ******************************/

.text_center {
  text-align: center;
}

.flex_box {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.thanks_box {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks {
  margin-top: 40px;
  background-color: var(--grabgo_dark);
  border: 2px solid var(--grabgo_dark);
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 1.4rem;
}
.thanks:hover {
  background-color: rgb(14, 79, 102);
}
.thanks_title {
  color: var(--grabgo_dark);
  font-size: 1.8rem;
  line-height: 2rem;
}
/********************************************/
.white_color {
  color: white;
  text-shadow: var(--text-shadow-dark);
}
.w_color {
  color: white;
}
.g_color {
  color: gold;
}
.blue_c {
  color: var(--grabgo_dark);
}
.w_100_p {
  width: 100px;
}
.w_100 {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.img {
  width: 100%;
  max-width: 500px;
}
.img_300 {
  width: 100%;
  max-width: 300px;
}
.w_300 {
  width: 100%;
  max-width: 300px;
}
.mb_40 {
  margin-bottom: 40px;
}
/********************************************/
img {
  max-width: 100%;
}

.grabgo_box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  width: 100%;
  height: 500px;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.grabgo_game {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;

  max-width: 100%;
  border-radius: 1rem;
}
.img_hero {
  max-width: 200px;
}
