
body {
    font-family: Arial, sans-serif;
    background-color: #fdf5ec;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 10px 20px;
    background-color: #f4e3d7;
    margin-top: 0;
}


header img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-bottom: 0rem; /* reduce this from 1rem to 0.5rem or 0 */
}

header h1 {
    font-size: 2em;
    color: #444;
    margin-top: 0.5rem; /* reduce top space if needed */
    margin-bottom: 0.3rem;
}

header p {
    font-size: 1.2em;
    color: #666;
    margin-top: 0; /* eliminate extra space */
}




nav {
    background-color: #e5d3b3;
    padding: 10px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
    background-color: #f9f1e6;
}

h2 {
    color: #444;
}

footer {
    background-color: #dfcbb1;
    color: #333;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}

button {
    background-color: #c19a6b;  /* Warm medium brown */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
  }
  
  button:hover {
    background-color: #a87954;  /* Slightly darker on hover */
  }

  .highlight {
    color: #c19a6b;
    font-weight: bold;
    background-color: #f4e3d7;
    padding: 2px 4px;
    border-radius: 3px;
  }
