* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    background-color:rgb(238, 208, 242);
    min-height: 100vh;
    border: 10px solid rgb(175, 96, 185);
}
.content {
    max-width: 900px;
    margin: 0 auto;
}

.image_container {
    border-radius: 50%;
    overflow: hidden;
}
.top_section {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.name h4 {
    text-align: end;
    font-size: 30px;
}
.name h1 {
    font-size: 60px;
    font-weight: bold;
    color: purple;
}
.image_container img{
    width: 300px;
    height: 320px;

}
.about_section {
    margin-top: 50px;    
}
.about_section h2{
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}
.about_section p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
    text-align: justify;
}
.biography_section {
    margin: 50px 0;
}
.biography_section h3{
    margin-bottom: 20px;
}
.biography_section ul {
    margin-left: 50px;
}

.biography_section li{
    margin-bottom: 15px;
}

footer {
    margin: 50px 0;
    text-align: right;
}

