body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
header {
  background-color: #333;
  color: #fff;
  padding: 1%;
  text-align: center;
}
main {
  min-height: 73vh;
}
nav {
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 15px;
}
nav a:hover {
  background-color: #555;
}
section {
  padding: 20px;
}
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
}
a img {
  width: 500px;
  height: 300px;
  border-radius: 10px;
  border: solid black 2px;
}
.projects {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-bottom: 2%;
}
#about {
  text-align: center;
}
h2 {
  font-size: 2.5em;
}
h3 a {
  text-decoration: none;
  color: #333;
}
#about p {
  text-align: center;
  font-size: 24px;
}
