:root {
  --color-primary: #222666;
  --color-primary-variant: #222666;
  --color-text-secondary: #7c7c84;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-width: 320px;
}

h1 {
  font-size: 2rem;
  line-height: 1.5;
}

h2 {
  font-size: 1.5em;
  line-height: 1.5;
}

.light {
  --color-bg: #ffffff;
  --color-surface: #f4f4f4;
  --color-text: #0b0909;
  --color-border: #dadada;
}

.dark {
  --color-bg: #0b0909;
  --color-surface: #1a1a1a;
  --color-text: #e0e0e0;
  --color-border: #2c2c2c;
}

nav {
  background-color: var(--color-primary);
  min-height: 64px;
}

.main-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  background-image: url("assets/GearsBackground.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

.content-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(229, 217, 217, 0.7);
  z-index: 0;
}

.logo-container {
  margin-bottom: 32px;
}

.logo-container,
.message-container {
  position: relative;
  z-index: 1;
}

.aptLogo {
  width: 290px;
  height: auto;
  display: block;
  max-width: 100%;
}

.message-container {
  text-align: center;
}

.message-container h1,
.message-container h2 {
  margin: 0;
}
