﻿/* Global application styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dddddd));
    background: linear-gradient(#ffffff, #dddddd);
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-logo {
    max-width: 300px;
}

.rf-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.jumbotron {
    background-color: white !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24) !important;
}

hr {
    height: 1px;
    margin: 2em 0;
    padding: 0;
    color: #ffffff;
    background-color: rgba(123, 155, 80, 0.3);
    border: 0;
}

.btn-primary {
    background-color: #197B9B;
    color: white;
    transition: 100ms ease-in;
}

    .btn-primary:hover {
        background-color: #115369;
    }

a {
    color: #197b9b;
}

p {
    font-size: 17px;
    color: gray;
}

.footer {
    position: fixed;
    bottom: 0;
    font-size: 20px;
    background-color: #333333;
    color: #ffffff;
    min-width: 100vw;
    height: 50px;
    padding-top: .33rem;
}

    .footer a {
        color: #ffffff;
        text-decoration: none;
    }
