main {
    height: 100vh;
    overflow-y:auto;
    overflow-x:hidden;
    perspective: 10px;
    max-width: 100vw;
    display: block;
    width: 100%;
}

#headshotWrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 90%;
    transform-style: preserve-3d;
    z-index: -1;
    max-width: 100vw;
    margin-top: -5%;
    top: 0;

}


#headshot {
    margin: 0;
    border: none;
    padding: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;

    transform: translateZ(-15px) scale(2.5);
}

#labelWrap {
    margin: 30vh 0 0 0;
    position: absolute;
    display: flex;
    object-fit: cover;
    z-index: -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 10vh;
    width: 100vw;
    max-width: 100vw;
    transform: translateZ(-5px) scale(2);
    font-size: 4rem;
    /* color: ; */
}

.labelText {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    font-size: 1.5rem;
    padding: 2rem 0rem;
    background-color: hsl(228, 6%, 17%);
    /* background-color: #a42323; */
    color: white;
    width: 100vw;
    max-width: 100vw;
    height: max-content;

    transform: scale(1) translateZ(0px);
    text-wrap: wrap;
    perspective: none;
    text-align: center;
}

#graphWrap {
    background-color: hsl(236, 15%, 74%);
    color: white;
    width: 100vw;
   
    height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#graph {
    width: 80%;
    height: 80%;
    background-color: black;
    border: 0.8vh solid /*rgb(251, 239, 221)*/ black;
    border-radius: 1vh;

    display: grid;
    grid: 1fr 1fr / 1fr 1fr;
    gap: 0.6vh;
    
    
}

.graphChild {
    width: 100%;
    height: 100%;
    background-color: hsl(224, 65%, 95%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: black;
    font-size: .7rem;
}

.graphChild.bottom {
    
}

.graphChild.right {
    
}



.sectionH2 {
    margin: 0;
}


#divider p {
    text-wrap: wrap;
    width: 85%;
}




