
.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.profile{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.photo{
  width: 236px;
  height: 236px;
  border: solid 2px #000;
  border-radius: 12px;
  padding: 9px;
  box-sizing: border-box;
}
.photo img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.name{
  font-size: 24px;
  font-weight: 600;
}
.links{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.links a{
  padding: 4px 8px;
  border: solid 1px #000;
  border-radius: 5px;
  background-color: #B3A8DF;
}
.dark-mode .links a{
  background-color: #5E4FB6;
}
.links a,
.description li{
  font-size: 14px;
}
.description{
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.description h3{
  font-size: 28px;
  font-weight: 700;
  max-width: 280px;
}
.description p,
.description li{
  font-weight: 600;
}
.description ul{
  padding-left: 8%;
}
.dark-mode .photo,
.dark-mode .links a{
  border-color: #fff;
}
@media (max-width: 430px){
  .description{
    max-width: 90%;
  }
}