body {
  background-image: url("./assets/background.webp");
}

.menu {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  margin: 20px auto;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.menu a:hover {
  text-decoration: underline;
  font-weight: 800;
}

#container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
  margin-top: 120px;
  align-items: center;
  height: 100%;
}

#content {
  color: white;
  font-weight: bolder;
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

.person {
  height: 100px;
  width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.person img {
  border-radius: 50px;
}

#image-container {
  display: flex;
  align-items: center;
  padding-top: 20px;
}