.about-me {
    position: relative;
    display: flex;
    flex-direction: column;
}

.right-side-decoration,
.left-side-decoration {
    user-select: none;
}

.right-side-decoration {
    z-index: -1;
    position: absolute;
    right: -15rem;
    top: -5rem;
    width: 600px;
    height: 600px;
}

.left-side-decoration {
    z-index: -1;
    position: absolute;
    left: -6rem;
    bottom: 0;
    width: 300px;
    height: 300px;
}

.glassmorph-container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 6rem;
    border-radius: 2rem;
    background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(181, 181, 181, 0.06) 0%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(50px);
}

.glassmorph-container img {
    user-select: none;
}

.quotation-marks {
    width: 2.5rem;
    height: 2.5rem;
}

.about-me-description {
    font-size: 2em;
    line-height: 2.5rem;
    font-weight: 600;
    color: var(--tertiary-color);
    text-align: left;
}

.about-me-description span {
    font-size: 0.6em;
    color: var(--quaternary-color);
}

.profile-container {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
}

.profile-container img {
    width: 5.125rem;
    height: 5.125rem;
    object-fit: cover;
    border-radius: 1.125rem;
}

.name {
    font-size: 1em;
    font-weight: 600;
    color: var(--tertiary-color);
}

.job {
    color: var(--secondary-color);
}

.job a {
    font-weight: 500;
    text-decoration: none;
    color: var(--secondary-color);
}

.leadership-program a {
    font-weight: 500;
    text-decoration: none;
    color: var(--quaternary-color);
}

@media (max-width: 1280px) {
    .right-side-decoration {
        width: 400px;
        height: 400px;
        right: -10rem;
        top: -2rem;
    }

    .left-side-decoration {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {

    .glassmorph-container {
        padding: 2rem 3rem;
        gap: 1rem;
        border-radius: 1rem;
    }

    .right-side-decoration {
        width: 120px;
        height: 120px;
        right: 0rem;
        top: 2rem;
    }

    .left-side-decoration {
        width: 100px;
        height: 100px;
        bottom: 0;
        left: -1rem;
    }

    .about-me-description {
        text-align: left;
        font-size: 1em;
        line-height: 16px;
    }

    .profile-container img {
        width: 4.125rem;
        height: 4.125rem;
    }

    .profile-description {
        font-size: 0.8em;
    }
}