* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
:root {
  --primary-color: #f5f5f7;
  --accent-color: #e9b2f4;
  --accent-hover-color: #f0a2ff;
  --secondary-color: #493760;
  --lightned-corner: rgba(255, 255, 255, 0.13);
  --background-color: #0b001a;
  --text-color: #f5f5f7;
  --herb-color: #1d082b;
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  color: var(--accent-color);
}

.special-font {
  /* font-family: "video", serif; */
  font-family: "t26-carbon", monospace;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.wide-font {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.logo {
  height: 120px;
  margin-bottom: 50px;
}
main div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title {
  font-size: 24px;
  text-align: center;
}
