@font-face {
  font-family: "Bogue";
  src: url("../Assets/fonts/Bogue-Regular.woff2") format("woff2"), url("..Assets/fonts/Bogue-Regular.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-header-size: 1.5rem;
  --font-button-size: 1.125rem;
  --font-body-size: 0.875rem;
}
@media screen and (min-height: 720px) {
  :root {
    --font-header-size: 1.5rem;
    --font-button-size: 1.5rem;
    --font-body-size: 1rem;
  }
}

* {
  margin: 0px;
  font-family: "ariana-pro";
}

body {
  background-color: #F7F5EE;
  overflow: hidden;
  overflow-y: auto;
}
body .telegram:hover,
body .tiktok:hover,
body .facebook:hover,
body .insta:hover {
  opacity: 0.7;
}

footer {
  display: flex;
  align-items: center;
  position: relative;
}
footer > div {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: center;
  padding-bottom: 32px;
}
footer > div > a {
  position: relative;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease;
}
footer > div > a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  background-color: #F7F5EE;
  overflow: hidden;
  z-index: -1;
}
footer > span {
  position: absolute;
  font-family: "ff-market-web", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.5rem;
  z-index: -2;
  color: #483323;
  left: 50%;
  top: 0;
  transform: rotate(-11.25deg) translate(-104%, -144%);
}

@media screen and (min-width: 420px) {
  footer > span {
    font-size: 2rem;
  }
}
header {
  display: flex;
  justify-content: center;
  padding: 48px 48px 32px 48px;
  position: relative;
}
header > img {
  max-width: 80px;
}
header > a {
  width: 42px;
  position: absolute;
  right: 32px;
  top: 32px;
  image-rendering: optimizeQuality;
  transition: all 0.3s ease;
}
header > a:active {
  transform: scale(0.7);
}

@media screen and (min-width: 420px) {
  header {
    padding: 48px;
  }
  header > img {
    max-width: 104px;
  }
}
@media screen and (min-height: 720px) {
  header {
    padding: 48px;
  }
}
.snake {
  position: fixed;
  top: 24%;
  bottom: 0;
  left: 16%;
  width: 240%;
  z-index: -2;
  transform-origin: center;
  transform: rotate(-28deg);
}

.section-container {
  padding: 0px 32px 32px 32px;
  margin: auto;
}

.hero {
  justify-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
}
.hero > h1 {
  font-family: "Bogue";
  color: #b99983;
  font-size: var(--font-header-size);
  text-transform: uppercase;
  text-align: center;
  max-width: 400px;
  padding-bottom: 12px;
}
.hero > p {
  color: #483323;
  text-align: center;
  max-width: 400px;
  font-size: var(--font-body-size);
}

section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 16px;
}
section > div,
section > a {
  overflow: hidden;
  max-height: 156px;
  max-width: 320px;
  width: 100%;
  height: 100%;
  padding: 16px;
  transition: all 0.3s ease;
  border-radius: 100px;
  border: 1px solid;
}
section > div:active,
section > a:active {
  transform: scale(0.7);
}
section > div > p,
section > a > p {
  z-index: 1;
  display: flex;
  flex-direction: row;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-button-size);
  font-weight: 800;
}
section img {
  width: 100%;
  height: 100%;
}
section.top {
  padding-top: 0px;
}
section.top > a.right {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #abc38f;
  position: relative;
  text-decoration: none;
  color: #3b4e2c;
}
section.middle > a.left {
  position: relative;
  background-color: #6d76b7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #21254c;
}
section.bottom {
  padding-bottom: 0;
}
section.bottom > a.right {
  position: relative;
  background-color: #FAC5A4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #B65C3E;
}

.container {
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 420px) {
  .section-container {
    flex-grow: 1;
  }
  .section-container > section {
    margin-top: 32px;
  }
}
@media screen and (min-height: 720px) {
  .section-container {
    flex-grow: 1;
  }
  .section-container > .hero {
    padding-bottom: 32px;
  }
}
@media screen and (min-height: 960px) {
  .snake {
    bottom: 0;
    left: 48%;
    width: 104%;
  }
  .section-container > .hero {
    padding-bottom: 48px;
  }
}/*# sourceMappingURL=app.css.map */