/*======zeroing======*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

body::-webkit-scrollbar {
  width: 0;
}
body {
  -ms-overflow-style: none;
}
/* ================================= */
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
  font-family: "Nunito Sans", sans-serif;
}

.wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.main {
  flex-grow: 1;
}

/* ============== BASE ============= */
._title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #2a2f38;
}

._subtitle {
  font-family: "Fira Code", monospace !important;
  font-style: regular;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #f44326;
}

._description {
  font-size: 1.125rem;
  color: #656565;
}

.gradient-text {
  background: linear-gradient(90deg, #f44326, #5e2c83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-animate="up"] {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="up"].animate-active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  [data-animate="up"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

#consent-banner {
  justify-content: center;
  align-items: center;
  color: #fff !important;
  display: flex;
  gap: 1rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

#consent-banner.show {
  opacity: 1;
  visibility: visible;
}

#consent-banner p {
  font-size: 14px;
}

#accept-consent {
  background: #00000000;
  text-decoration: underline;
  color: #fff !important;
}

#accept-consent:hover {
  color: #666 !important;
}
