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

header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

nav a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}

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

h1, h2 {
  font-weight: bold;
}

#favorites ul {
  list-style-type: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

#favorites img {
  border: 3px solid #333;
  width: 250px;
  transition: transform 0.3s;
}

#favorites img:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

#bio img {
  width: 300px;
  border-radius: 8px;
  border: 2px solid #333;
  display: block;
  margin: 1rem auto;
}

#philosophy {
  background-color: #eee;
  padding: 1rem;
  border-left: 4px solid #333;
}