.hero {
    height: calc(100vh - 56px);
    display: grid;
    place-items: center;
}

.hero .group {
    width: 100%;
}

.hero .sub {
    text-transform: uppercase;
    font-size: 24px;
    color: white;
    font-weight: normal;
    margin: 0;
    transition: font-size 0.5s;
    text-shadow: 4px 4px 4px #0000008a;
    text-align: center;
}

.hero .large {
    font-size: 128px;
    color: white;
    margin: 0;
    font-weight: normal;
    transition: font-size 0.5s;
    text-shadow: 4px 4px 4px #0000008a;
    text-align: center;
}

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