/*css*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
p{
    font-size:17px;
    font-family:Arial, Helvetica, sans-serif;
    word-spacing:4px;
    line-height:24px;
    padding: 6px 65px; 
}
.container{
    display:flex;
    flex:1; 
    justify-content: center;
    align-items: center;
}
.dp{
    width:350px;
    max-height:auto;
}
.bio{   
    margin-top: auto;
    margin-bottom: auto;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:50px;
}
.description{
    max-width:750px;
}
.box{
    display:flex;  
    gap: 45px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: auto;
    padding-bottom: 50px;
}
.png{
    height:40px;
}
@media screen and (max-width: 1150px) {
.dp{
    width:260px;
}
p{
    font-size:14px;
}
.bio{
    padding-bottom:0px;
}
}


@media screen and (max-width: 975px) {
html, body {
    height: auto;
}
.bio{
    flex-direction: column;
    padding: 30px;
}
.description{
    padding: 0px;
}
.png{
    height:32px;
}
}