* {
    margin: 0;
    padding: 0;
}

.imgbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  gap: 2rem;
}

.center-fit {
  width: 40vw !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0;
  flex-shrink: 0;
}

.info-container {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  width: 60vw;
  word-wrap: break-word;
  flex-shrink: 0;
}

.info-container h1 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: normal;
}

.info-container p {
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.info-container a {
  color: inherit;
  text-decoration: none;
}

.info-container a:hover {
  text-decoration: underline;
}

.footer-nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  z-index: 10;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.theme-toggle-container {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
  font-family: "Courier New", Courier, monospace;
}

.theme-toggle-container .material-symbols-outlined {
  color: var(--fg);
  font-size: 2rem;
  vertical-align: middle;
  transition: color 0.2s;
}

.app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.app-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

:root {
  --bg: #fff;
  --fg: #1a1818;
  --theme-toggle-fg: #fff; /* default for light mode: icon is white */
}

[data-theme="dark"] {
  --bg: #1a1818;
  --fg: #fff;
  --theme-toggle-fg: #1a1818; /* icon is dark in dark mode */
}

[data-theme="light"] {
  --bg: #fff;
  --fg: #1a1818;
  --theme-toggle-fg: #fff; /* icon is white in light mode */
}

body {
  background: var(--bg);
  color: var(--fg);
  transition: background 0.2s, color 0.2s;
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
}

.break-point {
  display: inline;
}

@media (max-width: 500px) {
  .break-point {
    display: none;
  }
} 

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("/fonts/material-symbols-outlined.woff2") format("woff2");
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}