body {
  font-family: "Gabarito", sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(247, 242, 223);
  background: linear-gradient(to right, #eae8e5, #efe9e4);
}

h1 {
  margin: 20px 0 10px;
}

p {
  text-align: left;
}

.headshot {
  width: 40vw;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 48px;
}

.link {
  position: relative;
  color: #0959cf;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #0959cf;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link:hover {
  color: #084298;
}

.link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#main-container, #main-container-larger {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

#main-container-larger {
  max-width: 900px;
}

#navbar {
  background-color: #2e2e2e !important;
  background-image: linear-gradient(to right, #2E2E2E, #323542);
}

.twoColumn {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-start;
  gap: 10px;
}
