*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    background-color:#AFE0FB;
    min-height: 100vh;
    border: 10px solid #223551;

}
.content{
    max-width: 900px;
    margin: 0 auto;
}
.top{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.top h1{
    font-size: 50px;
    font-weight: bold;
    color:#223551 ;
    text-transform: uppercase;
}
.image{
    border-radius: 50%;
    overflow: hidden;
    
}
.image,img{
    width: 280px;
    height: 250px
}
.about{
    margin: 50px;
}
.about h2{
    font-size: 70px;
    font-weight: 400px;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}
.about p{
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.2px;
    text-align: justify;
}
.points{
    margin-bottom: 25px;
}
.points ul{
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
}
.points li{
    margin-bottom: 14px;
}
footer{
    margin: 50px 0;
}
footer p{
    text-align: end;
}