body {
  background-color: black;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3{
  color: white;
}
p {
  color: white;
  max-width: 800px;
}

a {
  color: white;
  text-decoration: underline;
  margin-right: 15px;
}

.contactLinks {
  margin-top: 10px;
  margin-bottom: 30px;
}

.projects {
  display: flex;
  margin-bottom: 40px;
  gap: 2em;
  > div {
    text-align: center;
  }
}

.portrait {
  width: 150px;
  height: auto;
  border-radius: 100%;
}

iframe {
  width: 100%;
  max-width: 800px;
  width: 500px;
  height: 300px;
  border: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

footer {
  padding-top: 10px;
  margin-top: 40px;
  font-size: 14px;
}

@media only screen and (max-width: 600px) {
iframe {
  width: 100%;
  max-width: 300px;

  height: auto;
  border: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

}