@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --color-primary: #FF5D15;
  --background-color: #FFFFFF;
  --text-color: #17181A;
  --mascot-color: #46484D;
  --logo-color: black;
}

:root.dark {
  --color-primary: #FF6E30;
  --background-color: #17181A;
  --text-color: #F7F8FA;
  --mascot-color: #C4C7CC;
  --logo-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Figtree", sans-serif;
  background-color: var(--background-color);
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Theme */
[data-lang]:not(.button) {
  color: var(--text-color);
}

[data-lang].button-text {
  color: var(--background-color);
}

#mascot path {
  stroke: var(--mascot-color);
}

#mascot circle {
  stroke: var(--mascot-color);
  fill: var(--mascot-color);
}

#logo path {
  fill: var(--logo-color);
} 

/*  */
.hero {
  margin: auto;
  width: 420px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.text-container h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
}

.text-container h2 {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
}

.button {
  background-color: var(--color-primary);
  padding: 8px 32px;
  border-radius: 8px;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

footer {
  position: absolute;
  bottom: 3vh;
  width: 100%;
  padding: 0 calc(min(4vw, 4vh));
}

footer nav {
  width: fit-content;
  margin-left: auto;
}
