html {
    scroll-behavior: smooth;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.homeText {
    max-width: 25%;
    margin: 0 50px;
}

.splashMessageSection {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.splashMessage {
    font-size: 28px;
    font-weight: 200;
}

.leanMoreBtn {
    margin-top: 25px;
}

.logoText {
    font-size: 1.25em;
    margin-left: 5px;
    color: #58CAEA;
    line-height: 2;
}

.sideMenuSpacing {
    margin-right: 25px;
}

.aboutTitles {
    font-size: 24px;
    font-weight: 200;
    padding-bottom: 5px;
}

/*
Bootstrap style changes
*/

.navbar {
    background: #F5F5FC !important;
}

.btn {
    padding: .5rem 2.25rem;
}

.btn-primary {
    background-color: #58CAEA;
    border-color: #58CAEA;
}

.btn-primary:hover {
    background-color: #50BBD9;
    border-color: #50BBD9;
}

a {
    color: #8595cb;
}

.btn-primary:active {
    background-color: #50BBD9 !important;
    border-color: #50BBD9 !important;
}


@media (min-width: 1200px) {
    .aboutContainer {
        max-width: 1400px;
    }

    .containerHome {
        max-width: 1400px;
    }
}

@media (max-width: 992px) {
    .aboutImage {
        display: none;
    }

    .getStartedImage {
        display: none;
    }

    .homeRow {
        display: grid;
    }

    .homeText {
        max-width: 50%;
        margin: 25px auto;
        text-align: center;
        grid-row: 2;
    }
}