html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

nav {
    background: #141E30; 
    background: -webkit-linear-gradient(to left, #243B55, #141E30); 
    background: linear-gradient(to left, #243B55, #141E30); 
    color: white !important;
    text-align: center;
    height: 35px;
    margin-bottom: 0 !important;
    min-height: 35px;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

    nav a {
        color: lightgray !important;
    }

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.message-container {
    text-align: center;
    position: absolute;
    animation-duration: 4s;
    animation-fill-mode: both;
    width: 100%;
    top: 150px;
}

.message {
    display:inline-block;
    color: whitesmoke;
    border: whitesmoke 1px solid;
    padding: 20px;
    padding-left:60px;
    padding-right:60px;
    color: #FFFFFF;
    text-align: center;
    opacity: 1;
    background-color:rgba(255,255,255,0.3);
}

body {
    background: -webkit-linear-gradient(to left, #243B55, #141E30); 
    background: linear-gradient(to left, #243B55, #141E30);
}

.navbar {
    display: block;
    padding: 0;
}

.navbar > .container {
    display: block;
}

.main-nav {
    color: lightgray;
    list-style: none;
    margin-top: 5px;
    margin-bottom: 0px;
    display: inline-block;
    padding-left: 0px;
}

    .main-nav li {
        margin-top: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        display: inline-block;
        font-size: 0.9rem;
        margin-left: 20px;
        margin-right: 20px;
    }

.hero-image {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-top: -140px;
}

.content-box {
    color: lightgray;
    width: calc(80%);
    margin-left: 10%;
    margin-top: 100px;
}

.selected {
    font-weight: bold;
}

.body-content {
    height: 100%;
}

.main {
    height: 100%;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
}

.hero {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    display: inline-block;
    width: 300px;
}

.content-box-actions {
    text-align: center;
    margin: 20px;
}

.body-content {
    color: lightgray;
}

.content {
    color: lightgray;
}

.content a {
    color: white;
    text-decoration: underline;
}

.error-content {
    padding-top: 80px;
    min-height: calc(100vh - 110px);
}

.error-logo {
    display: block;
    width: 260px;
    max-width: 80%;
    margin: 30px 0;
}

.heading-small {
    font-size: 70%;
}

.content-box-actions a {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px 0px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-left: 20px;
    margin-top: 20px;
    min-width: 224px;
    outline-color: rgb(255, 255, 255);
    outline-style: none;
    outline-width: 0px;
    padding-bottom: 8px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    text-align: center;
    text-decoration-color: rgb(255, 255, 255);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px;
    text-transform: uppercase;
    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    width: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.logos {
    text-align: center;
    border:1px solid rgba(255,255,255, 0.3);
}

    .logos a {
        display: inline-block;
        margin: 0;
        max-width: 90%;
        margin-top: 35px;
        margin-bottom: 35px;
        margin-left:35px;
        margin-right:35px;
    }

    .logos a img {
        max-width:100%;
    }

footer {
    color: lightgray;
}

.text-danger {
    color: white;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.section {
    margin-bottom:250px;
}

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
    }

    .main-nav li {
        margin-left: 10px;
        margin-right: 10px;
    }

    .logos a {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 400px) {

    .hero-logo {
        margin-top:150px;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
    }

    .main-nav li {
        margin-left: 5px;
        margin-right: 5px;
    }
} 