:root {
  --color-bg: #0a0025;
  --color-bg-navy: #130a3f;
  --color-bg-card: #ffffff;
  --color-blue: #2d1472;
  --color-green: #1a9b62;
  --color-green-hover: #17a15c;
  --color-pink: #fe139c;
  --color-purple: #2b025b;
  --color-purple-deep: #1c003c;
  --color-purple-light: #9e91ff;
  --color-dark-text: #0d001d;
  --color-amber: #ffa903;

  --color-text: #ffffff;
  --color-text-dim: rgba(255, 255, 255, 0.8);
  --color-text-muted: #ececec;

  --color-border-muted: #f7f7f7;

  --color-orange: #f97316;
  --color-orange-dark: #c2580f;

  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --max-width: 1600px;

  --font-syne: "Syne", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg);
  background-image: url("./../../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: var(--font-syne);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

.gt-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1023px) {
  .gt-container {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .gt-container {
    padding: 0 16px;
  }
}

.gt-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gt-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-syne);
  font-weight: 700;
  line-height: 1.1;
}
