    body {
      margin: 0;
      background-color: #fffaf3;
      font-family: 'Crimson Text', serif;
      position: relative;
      overflow-x: hidden;
      min-height: 100vh;
    }
    header {
      text-align: center;
      padding: 40px 20px 10px;
      position: relative;
      z-index: 1;
    }

    header img.logo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #c25e4d;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3em;
      margin: 15px 0 5px;
    }

.logo {
  width: 200px;       
  height: 200px;
  object-fit: cover;  
  border-radius: 50%; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  border: 2px solid #c25e4d; 
}

    .content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 100px 20px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5em;
      margin-bottom: 0.2em;
      color: #4b2e2e;
    }

    .subtitle {
      font-style: italic;
      font-size: 1.3em;
      color: #7b5e57;
      margin-bottom: 40px;
    }

    nav {
      margin-bottom: 40px;
    }

    nav a {
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
      color: #4b2e2e;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #c25e4d;
    }

    p {
      max-width: 600px;
      margin: auto;
      font-size: 1.1em;
      line-height: 1.6;
    }

    footer {
      margin-top: 80px;
      padding: 20px;
      font-size: 0.9em;
      background-color: #f3e8d5;
      color: #4b2e2e;
    }

    .fade-in {
      opacity: 0;
      animation: fadeIn 1.5s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }