#about-div {
    width: 90%;
    max-width: 1200px;
    height: 75vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

#profile-photo {
    width: 30%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
}

img {
    height: 100%;
    object-fit: cover;
    box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.393);
    border-radius: 15px;
    overflow: hidden;
}

#profile-info {
    width: 30%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 40px;
}

#profile-info h2 {
    width: 100%;
    height: 10%;
    font-family: Akira;
    font-size: 40px;
    text-align: start;
    margin: 0;
}

#profile-info p {
    width: fit-content;
    height: 90%;
    font-family: Inclusive;
    font-size: 18px;
    line-height: 25px;
    word-wrap: normal;
    text-align: justify;
    margin: 0;
}

#email {
    text-decoration: none;
    color: black;
}

@media only screen and (max-width: 650px) {
    #about-div {
        flex-direction: column;
        gap: 60px;
        height: min-content;
        margin-top: 70px;
        margin-bottom: 70px;
    }

    #profile-photo {
        width: 100%;
        height: fit-content;
        justify-content: center;
        align-items: center;
    }
    
    img {
        width: 80%;
        object-fit: cover;
    }
    
    #profile-info {
        width: 100%;
        height: fit-content;
        justify-content: start;
        align-items: center;
        gap: 20px;
    }
    
    #profile-info h2 {
        width: 100%;
        height: fit-content;
        font-family: Akira;
        font-size: 40px;
        text-align: center;
        margin: 0;
    }
    
    #profile-info p {
        width: fit-content;
        width: 80%;
        font-family: Inclusive;
        font-size: 20px;
        line-height: 30px;
        word-wrap: normal;
        text-align: justify;
        margin: 0;
    }

}