@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Playfair+Display:wght@400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: #f7f5f0;
  color: #2c2c2a;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

header img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: #5f5e5a;
  margin-bottom: 0.75rem;
}

a {
  color: #5f5e5a;
  text-decoration: none;
}

a:hover {
  color: #2c2c2a;
}