/*
 * Galleries landing - typography only, style later
 */

:root {
  --bg: #f5f2eb;
  --text: #2a2a28;
}

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

body {
  font-family: 'Dupla', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 4rem;
}

h1 {
  font-family: 'Kapra Neue', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 3rem;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

nav a {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.5;
}

.back {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}

.back:hover {
  opacity: 0.5;
}
