@font-face {
  font-family: "main";
  src: url(media/fonts/gato-main.otf);
}
@font-face {
  font-family: "header";
  src: url(media/fonts/gato-header.ttf);
}

/* COLOR THEME */
:root {
  --primary-color: #c21b1b;
  --primary-light: #f8c3b8;
  --secondary-color: #0d1c29;
  --background-color: #d9d8e7;
  --bg-color2: #f9f5ed;
  --bg-color3: #cec7e1;
  --text-color: #0f0f0f;
  --btn-text: #eee;
  --btn-color: #333;
  --btn-color2: #444;
  --btn-color3: #555;
  --btn-shadow: #111;
}

/* UNIVERSALS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "main", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2,
h3 {
  font-family: "header", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 9.6rem;
}
h2 {
  font-size: 7.2rem;
}
h3 {
  font-size: 4.8rem;
}

ul {
  list-style: none;
  text-align: center;
}

a {
  text-decoration: none;
}

.marquee {
  background-color: var(--primary-light);
  --border: 3px solid var(--secondary-color);
  border-top: var(--border);
  border-bottom: var(--border);
  white-space: nowrap;
  overflow: hidden;
}

.strip1 {
  transform: rotate(0.75deg);
}

.strip2 {
  transform: rotate(-1.2deg);
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  width: clamp(32rem, 140rem, 100%);
}
footer {
  padding: 1.2rem;
  background-color: var(--text-color);
  color: var(--bg-color2);
  width: 100%;
  font-weight: 200;
  font-size: 2.4rem;
  text-align: center;
}

/* **********  **********  **********  **********   HEADER SECTION */

header {
  width: clamp(32rem, 140rem, 100%);
  height: 12rem;
  padding: 1.8rem;
  margin-top: 4.8rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

header .logo {
  height: 100%;
  margin-right: auto;
}

/* **********  **********  **********  **********   HERO SECTION */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 75dvh;
}
.hero-text {
  width: 80rem;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite alternate;
}
.hero-gato {
  width: 48rem;
  position: absolute;
  top: 20%;
  animation: spinning 3.5s linear infinite;
  transform-origin: 48.8% 59.5%; /*  48.8% from the left &   59.5% down */
}

.contract-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80rem;
  margin-bottom: 6.4rem;
}

.contract-btns {
  display: flex;
  gap: 1.2rem;
  z-index: 1;
  transform: skewY(2deg) rotate(4deg);
}
.contract-btns:first-child {
  margin-left: auto;
}
.contract {
  padding: 1.2rem;
  border: 3px solid var(--secondary-color);
  transform: skewY(-6.4deg) rotate(2deg) translateY(1.2rem);
}

@keyframes spinning {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(4.8rem);
  }
}

/* **********  **********  **********  **********   WELCOME SECTION */
.welcome-section {
  position: relative;
  width: clamp(32rem, 80rem, 100%);
  height: 75dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-content {
  display: contents;
}

.welcome-gato {
  width: 50%;
}

.welcome-items {
  margin-left: 9.6rem;
  margin-right: auto;
}
.welcome-items p {
  margin-bottom: 2.4rem;
}

/* **********  **********  **********  **********   TOKENOMICS SECTION */

.token-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.token-grid {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 40dvh;
}
.token-item {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  font-size: 3.2rem;
  font-weight: 400;
  background-color: var(--bg-color2);
}
.token-item-title {
  background-color: var(--secondary-color);
  width: 100%;
  color: var(--bg-color2);
  text-align: center;
}
.symbol {
  font-family: "header";
}

.divider {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* **********  **********  **********  **********   ROADMAP SECTION */

.roadmap-section {
  position: relative;
  width: 100%;
  height: 55dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  background-color: var(--bg-color3);
}

.roadmap-grid {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.roadmap-item {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: var(--bg-color2);
  border: 3px solid var(--secondary-color);
  border-radius: 18px;

  font-size: 2.4rem;
}

/* **********  **********  **********  **********   JOIN SECTION */

.join-section {
  position: relative;
  width: 100%;
  height: 50dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  background-color: var(--bg-color3);
}

.join-title {
  color: var(--primary-color);
}

#join-tel {
  color: var(--primary-color);
  border: 3px solid var(--text-color);
  background-color: var(--bg-color2);
}

#join-tel:hover {
  color: var(--bg-color2);
  border: 3px solid var(--primary-color);
  background-color: var(--primary-color);
}

.small-bouncy {
  width: 6.4rem;
}

/* BUTTONS */

.btn,
.btn2 {
  padding: 10px 20px;
  border: 3px solid var(--secondary-color);
  border-radius: 5px;
  transition: all 250ms;
  display: inline-block;
}

.btn:visited,
.btn:link {
  color: var(--secondary-color);
  background-color: var(--bg-color2);
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
}
.btn:hover,
.btn:active {
  color: var(--bg-color2);
  background-color: var(--secondary-color);
  transform: skew(0) rotate(0);
  fill: var(--bg-color2);
  color: var(--bg-color2);
}

.btn2:visited,
.btn2:link {
  stroke: var(--bg-color2);
  fill: var(--bg-color2);
  color: var(--bg-color2);
  background-color: var(--secondary-color);
}
.btn2:hover,
.btn2:active {
  color: var(--secondary-color);
  background-color: var(--bg-color2);
  transform: skew(0) rotate(0);
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
}
.btn-icon {
  width: 28px;
  height: auto;

  position: relative;
  top: 5px;
}

.main-buy {
  transform: skew(-8deg) rotate(4deg);
  font-size: 3.2rem;
}

#roadgat {
  height: 4rem;
  width: auto;
  margin-left: 2.4rem;
}
.star {
  position: absolute;
  z-index: -10;
}

.hidden {
  display: none;
}
