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

header {
  background-color: #876b56;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
}

header h1 a {
  text-decoration: none;
  color: #f1d0bc;
  transition: font-size 0.3s;
}

header h1 a:hover {
  font-size: 36px;
}

main {
  padding: 20px;
}

#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project {
  margin-bottom: 40px;
  text-align: center;
  transition: transform 0.3s;
}

.project:hover {
  transform: scale(1.05);
}

.project img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.project h2 {
  font-size: 24px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.project:hover h2 {
  color: #674f3d;
}

.project p {
  font-size: 18px;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.project:hover p {
  color: #674f3d;
}

.project-link {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #876b56;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s;
}

.project-link:hover {
  background-color: #000000;
}
