body{
    padding-bottom: 25px;
}

.title{
    text-align: center;
    font-size:36px;
    padding: 20px;
}

.biginfo{
    text-align: center;
    display:flex;
    flex-direction: column;
    font-size: 20px;
    margin:10px;
}

.biginfo .pfpimg{
    justify-self: center;
    margin-inline: auto;
    height:100px;
    width: 100px;
    margin-bottom: 10px;
}

.biginfo .position{
    font-size: 16px;
    color: gray;
}

.biography{
    margin:10px;
    margin-inline:18px;
}

.biography .biotitle{
    margin:3px;
    margin-block: 5px;
}

.biography .biocontents{
    width:auto;
    background-color: rgb(222, 222, 222);
    padding:10px;
    border-radius:10px;
}

.articleslist{
    margin:10px;
    margin-top:22px;
}

.articleslist .articlestitle{
    margin-inline:12px;
}

.articleslist .articlescontents{
    display:flex;
    flex-direction: row;
    overflow-x:scroll;
    padding-bottom: 15px;
}

.articleslist .articlepreview{
    height: 125px;
    min-width: 125px;
    background-color: rgb(222, 222, 222);
    display: flex;
    flex-direction: column;
    margin:10px;
    padding: auto;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.articleslist .articlepreview:hover, .articleslist .articlepreview:hover p{
    background-color: rgb(182, 182, 182);
}

.articleslist .articlepreview img{
    height:90px;
    width: auto;
    max-width: 90px;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    margin:auto;
}

.articleslist .articlepreview a{
    position:relative;
    text-align: center;
}

.articleslist .articlepreview p{
    position:absolute;
    margin:auto;
    background-color: rgb(222, 222, 222);
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    padding-bottom: 4px;
    max-lines: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}