@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: #faf9f7;
  color: #2c2c2c;
  min-height: 100vh;
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.pretty_title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-align: left;
  color: #1a1a1a;
}

.pretty_author {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  color: #555;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.pretty_text {
  font-size: 1.2rem;
  line-height: 1.9;
  text-align: left;
}
