.about-hero{
    display: grid;
    margin: 0 auto;
    position: relative;
    left: 0;
    grid-template-columns: calc(50% - 50px) calc(50% - 50px);
    gap: 100px;
    overflow: hidden;
    padding-top: var(--section-padding);
}

.about-image{
    position: absolute;
    right: 0;
    top: var(--section-padding);
    width: 50%;
    height: 100%;
    display: block;
}

.about-image img{
    top: 0;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

#about-copy h1{
    margin-bottom: 30px;
}

#about-copy p{
    margin-bottom: 15px;
}

#about-copy h2{
    margin-bottom: 30px;
}

#about-copy h5{
    margin-bottom: 30px;
}

.divide-line{
    display: block;
    width: 80vw;
    height: 2px;
    background-color: var(--black);
    margin: 0 auto;
}

.skills-grid{
    width: 800px;
    display: grid;
    grid-template-columns: 40% 25% 25%;
    column-gap: 50px;
    row-gap: 10px;
    text-align: left;
}    

.skills-grid p{
    margin-top: 0;
}