:root {
  --bg: #00193c;
  --element-bg: #043355;
  --element-bg-pop: #25445a;
  --accent: #f6a56d;
  --secondary: #de381e;
  --hover: #87afa6;
  --font: #f6dbb0;
  --font-muted: #dec99a;
  --link: #f6a56d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--font);
  font-family: 'Georgia', 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.7;
}

main {
  max-width: 540px;
  text-align: center;
}

h1 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  color: var(--hover);
  border-bottom-color: var(--hover);
}

.muted {
  color: var(--font-muted);
  font-size: 0.95rem;
}
