/*
Theme Name: Blank App Theme
Description: Barebones theme for intentionally blank page app links.
Version: 1.0.0
*/

:root {
  --text: #111111;
  --bg: #ffffff;
  --muted: #555555;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
}

.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  line-height: 1.6;
}

h1 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p,
ul {
  margin: 0 0 16px;
}

ul {
  padding-left: 20px;
}

.front-center,
.app-center {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.front-center a,
.app-link {
  text-decoration: none;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.05;
}

.front-center a:hover,
.front-center a:focus-visible,
.app-link:hover,
.app-link:focus-visible {
  text-decoration: underline;
}

.app-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.links a {
  text-decoration: underline;
}

small,
.muted {
  color: var(--muted);
}
