body {
    background-color: #a4cbda;
    font-family: "Inter", sans-serif;
    color: #394a79;
    margin: 0;
    padding: 0;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.profile .title {
    text-align: center; /* Change from "left" to "center" */
    margin-right: auto; /* Remove margin-right and margin-left */
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Change from "flex-start" to "center" */
}


.profile h1 {
    font-size: 48px;
    font-weight: bolder;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile h2 {
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    margin-top: 5px;
}

.profile img {
           border-radius: 8%;
        width: 300px;
        height: auto;
        object-fit: cover;
        margin: 40px auto; /* Change margin properties to "auto" */
    }

.biography h1 {
    font-size: 20px;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px ;
}

.more-info h1 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 30px;
}

a {
    color: inherit;
    text-decoration: none;
    line-height: 1.5;
    font-size: 20px;
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }

    .profile .title {
        margin: 20px 0;
    }

    .profile img {
        margin: 20px 0;
    }

    .more-info h1 {
        margin-left: 0;
    }
}