profile-section{
    min-height: 80vh;
}
.profile-img-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.profile,
.profile-bio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    object-fit: contain;
}
.profile-img{
    height: 100%;
    width: 100%;
    border-radius: 50px;
    transform: scale(.9);
}
.profile-name{
    font-weight: bold;
    font-size: 20px;
}
.profile-bio .content{
    height: 100%;
    width: 100%;
    display: flex;
    padding: 10px;
    transform: scale(.9);
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.body{
    text-align: justify;
}
.highlight-images{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    overflow-y: scroll;
}
.highlight-images::-webkit-scrollbar {
    height: 5px;
    width: 2px;
}
.highlight-images::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.highlight-images::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.highlight-images img{
    width: 300px;
    max-height: 300px !important;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .highlight-images{
        width: 100vw;
        display: flex;
        position: relative;
        flex-direction: column;
    }
    .highlight-images img{
        width: 100vw;
        max-height: 400px !important;
        border-radius: 10px;
    }
}