header {
  border: 1px solid black;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: gold;
}

header p {
  font-style: italic;
}

header img {
  width: 37%;
  border: 3px solid red;
  border-radius: 45px;
  box-shadow: 2px 2px 15px;
}

header img:hover {
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}

header button {
  display: block;
  margin: 30px auto;
  padding: 12px 30px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50px;
}

header button:hover {
  background-color: antiquewhite;
  color: red;
  border: 2px solid blue;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}

#about {
  width: 95%;
  margin: 40px auto;
  display: flex;
}
.left-about {
  width: 50%;
}
.left-about img {
  width: 40%;
  border-radius: 50px 0;
  margin-left: 100px;
  box-shadow: 3px 2px 12x blue;
}
.right-about {
  width: 50%;
  padding: 40px;
}

#project {
  width: 90%;
  margin: 30px auto;
  border: 1px solid ghostwhite;
  text-align: center;
}
#project h2 {
  color: blue;
}
.project-image {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}
.project-image img {
  width: 25%;
  padding: 20px;
  margin: 0 auto;
}
.project-image img:hover {
  transform: scale(.9);
  transition: all.3s ease-in-out;
  box-shadow: 4px 4px 10px orangered;
}