:root {
  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --color-bg: #181213;
  --color-text: #e2dddd;
  --color-primary: #992834;
  --color-secondary: #07aee5;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background-image: url("/assets/bg.webp");
  background-size: cover;
  background-position: center;
}

.container {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.panel {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px 20px;
  border-radius: 8px;
}
