#aboutme {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
}
#aboutme .aboutContent {
    z-index: 1;
    display: flex;
}
.aboutContent .profileImage {
    width: auto;
    height: 800px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 1em 1em 1em black;
}
.aboutContent .aboutInformation {
    padding: 1em;

    color: white;
    font-size: 2em;
}
.aboutContent .aboutInformation label {
    font-style: normal;
}
.aboutContent .aboutLinks {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.2em;

    margin-top: 10em;
}
.aboutContent .aboutLinks .icon {
    width: auto;
    height: 1.5em;
}
#aboutme .aboutBackdrop {
    width: 1600px;
    height: 700px;
    margin-top: -750px;

    background-color: rgba(0, 0, 0, 0.5);
    /* backdrop-filter: blur(1em); */
    border-radius: 32px;
}

#projects {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    margin-top: 10em;
}
#projects .projectList {
    display: flex;
    flex-direction: column;

    width: 1600px;
    padding: 2em;

    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 32px;
}
.projectList ul {
    margin-top: -15px;
    font-weight: normal;
}
.projectList .projectDivider {
    width: 100%;
    height: 2px;
    background-color: white;
}

@media (max-width: 1000px) {
    #aboutme .profileImage{
        height: 600px;
    }
    #aboutme .aboutContent{
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.5);
        
        border-radius: 32px;
    }
    #aboutme .aboutLinks {
        margin-top: 2em;
    }
    #aboutme .aboutBackdrop {
        display: none;
    }
    #projects .projectList {
        width: 80%;
    }
}