.about-me-section {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.separator-box {
    width: 2px;
    background-color: white;
}

.about-me-body {
    background-image: url(../assets/img/Background-secondary.png);
    width: 96vw;
    border-radius: 8px;
    height: 82vh;
    max-width: 1920px;
    max-height: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}

.about-me-content {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-me-pic {
    height: 160px;
    width: 160px;
}

.profile-name {
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.about-me-opening-text {
    width: 40vw;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 720px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    max-height: 56vh;
}

@media(max-width:1029px) {
    .about-me-opening-text {
        flex: 1;
        padding: 24px;
    }
}

.profile-picture {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 320px;
    max-height: 28vh;
}

@media(max-width:1014px) {
    .separator-box {
        display: none;
    }

    .profile-picture {
        display: none;
    }
}

.about-me-opening {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    min-height: 296px;
    height: 56vh;
    max-height: max-content;
}

@media(max-width:550px) {
    .separator-box {
        display: none;
    }
    nav{
        gap: 12px;
    }
}

.about-me-nav {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.cover-letter-textBox {
    height: 389px;
    max-height: 56vh;
    display: flex;
    flex-direction: column;
    gap: 8px;
}