:root {
  --bg: #f4f4f0;
  --panel: #eef3ee;
  --accent: #dfe6d2;
  --line: #b9c2ad;
  --text: #8f9b83;
  --text-dark: #687260;
  --white: #fbfbf8;
  --shadow: 0 0 0 1px rgba(120,130,110,.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond", serif;
  min-height: 100vh;
  background: linear-gradient(90deg, var(--bg) 0 72%, #e8eddc 72% 100%);
  color: var(--text-dark);
}

.site {
  max-width: 1150px;
  margin: 6px auto;
  background: var(--bg);
  border: 1px solid #9ea799;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.topline {
  height: 4px;
  background: #0f1c3b;
}

header {
  background: #eef3ef;
  border-bottom: 1px solid #d6ddd0;
  padding: 28px 20px 18px;
  text-align: center;
}

.title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

h1 {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: #c3ccb7;
  font-weight: 400;
}

.star {
  font-size: 1.3rem;
  color: #4b5147;
}

nav {
  border-top: 1px solid #d6ddd0;
  border-bottom: 1px solid #d6ddd0;
  background: #f7f7f4;
  text-align: center;
  padding: 10px;
}

nav a {
  color: var(--text);
  text-decoration: underline;
  margin: 0 8px;
  font-size: 1rem;
}

.content {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.frame {
  width: 620px;
  height: 510px;
  background: #f8f8f6;
  border: 1px solid #c7cec2;
  overflow-y: auto;
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cover {
  aspect-ratio: 2 / 3;
  border: 1px solid #c5cabe;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}
