html {
    height: 100%;
}

body {
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
}

@supports (min-height: 100dvh) {
    body {
        min-height: 100dvh;
    }
}

/* Some browsers behave better with svh than vh. */
@supports (min-height: 100svh) {
    body {
        min-height: 100svh;
    }
}

/* Ensure the hero can shrink and the page can scroll. */
.hero {
    width: 100%;
}

.hero-body {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-text {
        margin-left: 0 !important;
        margin-top: 0.75rem;
    }
}