body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6em;
  color: #333;
  background-color: #fcfcfc;
}

h1 {
  text-align: center;
  
  /* --- FONT CHANGES HERE --- */
  
  /* Option 1: "Trebuchet MS" is round and friendly (Soft & Modern) */
     font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  
  /* Option 2: For an elegant, classic softness, uncomment the line below: */
  /* font-family: 'Garamond', 'Baskerville', Georgia, serif; */
  
  /* Reducing weight makes it look much softer and more premium */
  font-weight: 400; 
  
  /* ------------------------- */
  
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
}

img {
  display: block;
  margin: 0 auto 40px auto;
  
  /* --- IMAGE CHANGES HERE --- */
  width: 35%; /* Reduced from 50% to make it smaller */
  max-width: 100%; 
  
  /* No shadow, no rounded corners (Clean look) */
  /* ------------------------- */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #777; /* Slightly lighter grey on hover */
}
