main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;

    height: 100vh;
    line-height: 1;

    font-family: 'Cabin', sans-serif;

}

h1 {
    font-size: 10vw;
    text-transform: uppercase;
}

h2 {
    font-size: 8.5vw;
    text-transform: uppercase;
}

@media (max-width: 991.98px){

    h1 {
        font-size: 30vw;
    }


    h2 {
        font-size: 12vw;
        align-self: flex-end;
    }

}