body {
  font-family: 'Roboto', sans-serif;
}

header {
  position: relative;
  border-bottom: 2px solid #002288;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 0;
  background-color: #faf9f6;
}

main {
  background-image: linear-gradient(to bottom, #002288, white);
  position: relative;
  margin-top: 5px;
}

footer {
  padding: 20px 0;
  background-color: #f0f0f0;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ccc;
}

footer a {
  color: inherit;
  text-decoration: none;
}

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

.top-corner {
  margin-left: auto;
  text-align: right;
}

.top-corner h1,
.top-corner h2,
.top-corner a {
  margin: 0;
}

.featured-work {
  text-align: center;
  margin-top: 20px;
}

.info {
  flex: 1 1 300px;
  max-width: 400px;
}

.info-heading {
  margin-top: 20px;
}

.info-image {
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.info-image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

img.headshot {
  max-width: 70px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

#section-1 {
  padding: 10px 20px 5px 20px;
  gap: 20px;
}

#center-picture img {
  width: 100%;
  height: auto;
  display: block;
}

#additional-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .top-corner {
    position: static;
    text-align: center;
    margin-top: 20px;
  }

  #additional-info {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .info-image {
    max-width: 200px;
  }
}