﻿.page {
    position: relative;
    display: flex;
    flex-direction: column;
}
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}
    .home-banner {
        /* height: 100px;
        width: 100%; */
        margin-bottom: 28px;
        border-radius: 10px;

        display: flex;
        align-items: center;
        justify-content: start;

        /* replace with colors that match the sunshine logo */
       /*  background: linear-gradient(110deg, #23384d, #315a68); */
        overflow: hidden;
    }

    .home-banner img {
      /*   max-height: 86px;
        max-width: 95%; */
        object-fit: contain;
    }

    .home-intro {
        margin-bottom: 28px;
    }

    .home-intro h2 {
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .home-intro p {
        font-size: 22px;
        line-height: 1.5;
        color: #d0d2d7;
    }

footer {
    height: 40px;
    flex-shrink: 0;
    border-top: 1px solid gray;
    padding: 10px;
    box-sizing: border-box;
}

.flink {color:white !important; text-decoration:none;}
.flink:hover {text-decoration:underline;}
article {padding: 20px;}
