.card-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: -1;
    height: 100vh;
}

.about-h1 {
    align-self: center;
    color: var(--black-text);
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.about-h1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--dark-pink);
}

.card {
    width: 370px;
    background-color: var(--dark-pink);
    display: flex;
    align-self: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
}

.card .card-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 100%);
}

.profile-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -8rem;
    z-index: 1;
    border: 10px solid #fff;
}

.card h1 {
    font-size: 2em;
    color: var(--black-text);
    margin-top: 1rem;
}

.job-title {
    color: var(--gray);
    font-size: 1.5em;
    font-weight: 500;
    font-style: italic;
}

.about {
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
    color: var(--black-text);
    margin: 1rem;
}

.ball-4 {
    position: absolute;
    top: 10%;
    left: 25%;
    width: 150px;
    height: 150px;
    background-color: var(--light-pink);
    border-radius: 50%;
    z-index: -2;
}
.ball-5 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 200px;
    height: 200px;
    background-color: var(--light-pink);
    border-radius: 50%;
    z-index: -2;
}
.ball-6 {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 170px;
    height: 170px;
    background-color: var(--light-pink);
    border-radius: 50%;
    z-index: -2;
}