:root {
  --color-bg: #000124;
  --color-bg-dark: #000117;
  --color-accent: #eb61ff;
  --color-white: #ffffff;
  --color-text-secondary: #dcdcdc;
  --color-border: #4e4e4e;
  --color-border-dark: #333333;
  --color-black: #0a0a0a;
  --color-gold: #ffd700;
  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  background-color: var(--color-bg);
  background-image: url("./../images/bg.jpg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: cover;
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

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

.container {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
