@import "styles/normalize.css";
@import "styles/footer.css";
@import "styles/clawcraze.css";
:root {
  --one: #1e2025;
  --white: #ffffff;
  --technic: rgb(244, 108, 11);
  --two: #f24d39;
  --body: var(--white);
  --black: #000;
  --txt: #939090;
  --red-color: #cf1616;
  --grey: grey;
  --red: #ff8c42;
  --gradient1: #bcedf1;
  --gradient2: #f7d0bf;
  --gradient3: rgb(204, 203, 203);
  --gradient4: #26c8d9;

  --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 #777;
  --text-shadow-dark: 2px 2px 2px var(--one);

  --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;
  --shadow-btn: 0 0 0 2px #d2973d inset, 0 0 0 4px white inset;
  --gradient: linear-gradient(var(--one), var(--gradient2));
}

@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: var(--gradient2);
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: var(--one);
  border-radius: 1.5rem;
  border: 3px solid var(--gradient2);
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #f2ebeb;
  font-family: "Lato";
}

.claw_craze_main {
  width: 100%;
  min-height: calc(100vh - 160px);
}

.claw_craze_wrapper {
  width: 85%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
}

@media (max-width: 1000px) {
  .claw_craze_wrapper {
    width: 95%;
  }
}

@media (max-width: 700px) {
  .claw_craze_wrapper2 {
    width: 90%;
  }
}
a,
button {
  cursor: pointer;
  text-decoration: none;
}
h3 {
  font-size: 1.8rem;
}

/******************************  GENERAL TITLE PAGE ******************************/

.claw_craze_container_page {
  padding: 10rem 10px 0;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.claw_craze_section_title span {
  color: var(--two);
}

.claw_craze_thanks_box {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.claw_craze_thanks {
  margin-top: 40px;
  background-color: red;
  border: 2px solid red;
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
}
.claw_craze_color3 {
  color: rgb(6, 24, 30);
}
.claw_craze_w_100_p {
  width: 100px;
}
/********************************************/
