body {
  color: white;
  font-family: 'Montserrat', sans-serif;
  background-color: saddlebrown;
  font-size: 1.05rem;
}

header {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 30px 30px;
}

a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;

  transition: color 0.2s ease-in-out;
}

a:hover {
  color: wheat;
  text-decoration: underline;
}

.home {
  font-size: 2rem;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5% 20%;
}

.alignSelfCenter {
  align-self: center;
}

.contentContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5% 20%;
  gap: 15vh;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}

.imageContainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.textContent {
  display: flex;
  flex-direction: column;
  max-width: 850px;
}

.text {
  min-width: 200px;
  max-width: 500px;
}

.profilePicture {
  min-width: 300px;
  width: 50%;
  object-fit: contain;
}
