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

.container{
    background-color: #e5e5fd;
    min-height: 100vh;
    border: 10px solid #1d1e4c;
}

.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;
    color: #1d1e4c;
    text-transform: uppercase;
}
.top-section h4{
    font-size: 30px;
    text-align: end;
}
.image_container{
    border-radius: 50%;
    overflow: hidden;
}
.image_container, img{
    width: 300px;
    height: 320px;
}

/* about section */
.about-section{
    margin-top: 50px;
}
.about-section h2{
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 10px;
}
.about-section p{
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1.2px;
    text-align: justify;
}

/* biography-section */
.biography-section{
    margin: 50px 0;
}
.biography-section h3{
    font-size: 50px;
    margin-bottom: 20px;
}
.biography-section ul{
    margin-left: 50px;
}
.biography-section li{
    margin-bottom: 15px;
    font-size: 20px;
}

/* footer */
footer{
    margin: 50px 0;
}
footer p{
    text-align: end;
    font-size: 20px;
}