*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
  background-color: black;
  min-height: 100vh;
  color: white;
  border: 5px solid white;
}
.content{
  max-width: 900px;
  margin: 0 auto;
}
.top_section{
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top_section h1{
  font-size: 50px;
  font-weight: bold;
}
.image_container{
  border-radius: 20%;
  overflow: hidden;
}
.image_container,img{
  height: 300px;
  
}
.about_section{
  margin-top: 50px;
}
.about_section h2{
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about_section p{
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.2px;
}
.biography_section{
  margin: 50px 0;
  font-size: 20px;
}
.biography_section h1{
  margin-bottom: 20px;
}
.biography_section ol ul{
  margin-left: 50px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.2px;
}
.biography_section li{
  margin-bottom: 15px;
}