:root {
    --nav-height: 93px;
}

body {
    line-height: 2em;
}

:target:before {
    content: "";
    display: block;
    height: 93px;
    margin: 0px;
}

#home {
    height: calc(100vh - var(--nav-height) - 2px);
}

@media(max-width:767px){
    #home h1 {
        font-size: 1.25rem;
    }

    #home h1.display-1 {
        font-size: 3rem !important;
    }
}

@media(min-width:768px){
    #home:after {
        border-bottom: calc(150px) solid white;
        border-left: calc(100vw) solid transparent;
        content: "";
        position: absolute;
        bottom: -2px;
        right: 0;
        box-sizing: border-box !important;
    }
}
