body {
    grid-template-rows: auto auto 1fr;
}
h1 {
    display: none;
}
article>section {
}
section section {
    width: 100%;
}
.hero {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: 0 -326px;
    padding-left: 20rem;
    padding-top: 11rem;
}
.hero p {
    font-family: headings;
    margin: 0;
    color: var(--comp);
}
.heroText {
    background-color: #fff;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
    top: -6rem;
    align-items: center;
    text-align: center;
    box-shadow: 5px 4px 21px 9px rgba(0, 0, 0, .5);
}
p.name {
    color: var(--mainLight);
    font-size: 3rem;
}
.blurb {
    font-weight: bold;
    font-size: 2rem;
}
p.details {
    font-family: body;
    margin-top: 1rem;
    font-size: 120%;
    line-height: 1.6;
}
footer,
main {
    display: none;
}