/* **********Body*********** */
.image{
    height: 300px;
    width: vw;
    background-image: url("../images/background.jpg");
    background-size: cover;
    text-align: center;
    color: white;
    font-size: 40px;
    padding: 100px 0;
    margin-top: 78px;
}

.data{
    color: #500000;
    display: flex;
    width: 65%;
    padding: 50px 0;
    margin: auto;
    text-align: justify;
}

.profile-photo img {
    width: 150px;
    height: 190px;
    object-fit: cover;
}

.webpage-link{
    text-decoration: none;
    color: #500000;
}

.profile-top-details{
    display: flex;
    justify-content: space-between;
}

.profile-details{
    margin-left: 30px;
    width: 100%;
}
.about{
    color: black;
    margin-top: 20px;
}

img {
    vertical-align: middle;
    margin-bottom: 3px; /* Adjust this value as necessary */
}
/* **********Body*********** */


@media(max-width:1095px){
    .profile-top-details{
        flex-direction: column;
    }
}

@media(max-width:680px){
    .data{
        flex-direction: column;
        width: 80%;
    }
    .profile-top-details{
        flex-direction: column;
    }
    .profile-details{
        padding-top: 20px;
        margin-left: 0px;
    }
    .profile-photo img {
        width: 120px;
        height: 150px;
    }

}
