.hero {
    display: grid;
    place-items: center;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-image {
    height: 220px; 
    width: auto; 
    bottom: 25%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero .group {
    width: 100%;
}

.hero .sub {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--black-4);
    font-weight: 100;
    margin: 0;
    margin-top: 3rem;
    transition: font-size 0.5s;
}

.hero .large {
    font-size: 20px;
    color: var(--black-2);
    margin: 0;
    transition: font-size 0.5s;
}

@media screen and (max-width: 800px) {
    .hero .sub {
        font-size: 12px;
    }
    .hero .large {
        font-size: 25px;
    }
}