* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    background-color: #CDC1E9;
    min-height: 100vh;
    border: 10px solid black;
}
.content {
    max-width: 900px;
    margin: 0 auto;
}
.topsection {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: flex-end;
}
.topsection h1 {
    font-size: 50px;
    font-weight: bold;
    color: #1d1e1d;
    text-transform: uppercase;
}
.topsection h4 {
    font-size: 20px;
    text-align: end;
}
.image_container{
    border-radius: 40%;
    overflow: hidden;
}
.image_container ,
img {
    width: 300px;
    height: 320px;
}
.aboutsection {
    margin-top: 50px;

}
.aboutsection h1 {
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 50px;
}
.aboutsection p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
    text-align: justify;
}
.biosection {
    margin-top: 50px;
    margin-bottom: 50px;
}
.biosection h3 {
    margin-bottom: 20px;
}
.biosection ul {
    margin-left: 50px;
}
.biosection li {
    margin-bottom: 10px;
}
footer {
    margin-top: 20px;
    margin-bottom: 20px;
}
footer p {
    text-align: end;
}