* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f6f3ef;
  color: #1c1c1c;
  font-family: "Georgia", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 60px 40px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

h1 {
  font-size: 3.2rem;
  margin: 0;
  font-weight: normal;
}

.subtitle {
  margin-top: 8px;
  margin-bottom: 50px;
  color: #777;
  font-style: italic;
}

.entries {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entries li {
  margin-bottom: 18px;
}

.entries a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 1.05rem;
  display: block;
}

.entries a:hover {
  text-decoration: underline;
}
