.img-wrapper >  img{
    position:absolute;
    top: 0;
    height: 100vh;
    width:50vw;
    object-fit: cover;
    margin:0;
    animation: open 1s ease 2s;
    animation-fill-mode: both;
    z-index:3;
}

.img-wrapper{
    display: flex;
    z-index:8;
}

@keyframes open {
    from {
        width: 50vw;
        box-shadow: 0px 0px 91px 2px #ffffff00;
    }
    to {
        width: 25vw;
        box-shadow: 0px 0px 91px 2px #ffffff23;
    }
}

#left_img {
    left: 0;
}

#right_img {
    right: 0;
}

.content{
    position: absolute;
    top:0%;
    left:50%;
    width:50%;
    z-index:2;
    transform: translatex(-50%);
}
.bios{
    display: grid;
    width: 100%;
    margin-top: 6em;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content min-content;
    gap: 3em clamp(1rem,4vw,5rem);
    animation: fade-in 1.25s ease 2s;
    animation-fill-mode: both;
}

.member_text_wrapper {
    display: block;
    grid-row: 1;
    margin: 2em 0;
}

.member_projects_wrapper {
    grid-row: 2;
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 8fr 1fr;
    grid-template-rows: max-content 1fr 1fr;
}

.member_projects_wrapper > a {
    grid-column: 2;
    text-decoration: none;
}

.member_projects_wrapper > h3 {
    font-size: 1em;
    text-align: center;
    grid-column: 2;
    grid-row: 1;
    letter-spacing: 0;
    margin: 0;
}



@keyframes fade-in {
    from {
        filter: blur(10px);
        transform: scale(80%);
    }
    to {
        filter: blur(0px);
        transform: scale(100%);
    }
}

.common-bio{
    margin: 6em 15% 2em 15%;
    font-size: 1.1rem;
    animation: fade-in 1.25s ease 2s;
    animation-fill-mode: both;
}

.progressbar {
    position:absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    width: 0.2em;
    height: 0;
    -webkit-box-shadow: 0px 0px 23px 3px #ff470077; 
    box-shadow: 0px 0px 23px 3px #ff470077;

    background: #ff4700;
    animation: pb-shrink 2s ease-in;
    animation-fill-mode:backwards;
}

.description {
    position:relative;
    z-index: 1;
}

.description > p:first-child {
    margin-top: 0;
}

.description > p:last-child {
    margin-bottom: 0;
}

@keyframes pb-shrink {
    from {height: 0;}
    to {height: 100vh;}
}

.reference_button {
    grid-column: 2;
    height: 4em;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    width: 100%;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, width 0.3s ease, margin 0.3s ease;
    -webkit-box-shadow: inset 0px 0px 17px 5px #ffffff00;
    box-shadow: inset 0px 0px 17px 5px #ffffff00;
}

.reference_button:hover {
    -webkit-box-shadow: inset 0px 0px 30px 5px #FFFFFFFF;
    box-shadow: inset 0px 0px 30px 5px #FFFFFFFF;
    width: 110%;
    margin-left: -5%
}

.reference_button > h3 {
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    font-size: 1em;
    letter-spacing: 0;
    text-align: center;
    color: #e2e2e2;
    user-select: none;
    z-index: 2;
    transform: translateY(0.25em);
}

.reference_button > .reference_img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 4em;
    z-index: 1;
    background-position: center;
    background-size: cover;
    filter: blur(5px);
}

#left {
    grid-column: 1;
}

#right {
    grid-column: 2;
    text-align-last: right;
}

.name {
    letter-spacing: 0.1em;
    z-index: 1;
}

.name > h3 {
    font-size: 2em;
    margin: 0;
    opacity: 25%;
}

.name > h2 {
    font-size: 3em;
    letter-spacing: 0.2em;
    margin: -2% 0 2% 0;
    opacity: 50%;
}

.highlighter {
    position: relative;
    display: flex;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 1;
    z-index: 0;
    background-color: #e2e2e2;
    opacity: 8%;
}