* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 200%;
  color: #000;
  background: #fff;
}

.profile {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px 24px 60px;
  text-align: center;
}

.profile__header {
  margin-bottom: 24px;
}

.profile__name {
  font-weight: 900;
  font-size: 180%;
  color: rgb(143, 192, 169);
  text-transform: uppercase;
}

.profile__role {
  font-weight: 900;
  font-size: 130%;
  color: rgb(96, 96, 96);
  margin-top: 8px;
}

.profile__photo {
  width: 100%;
  max-width: 650px;
  margin: 50px auto 32px;
}

.profile__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.profile__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  line-height:140%;
}

.profile__bio a {
  color: rgb(143, 192, 169);
  text-decoration: none;
  font-weight: 700;
}

.profile__bio a:hover {
  text-decoration: underline;
}

.profile__footer {
  font-weight: 700;
}