﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,300&family=Oswald:wght@400;600&display=swap'); /* Necessry as first line because the non-import method doesn't work on iOS https://stackoverflow.com/questions/14676613/how-to-import-google-web-font-in-css-file */

/*STYLE GUIDE - FRONT PAGE

    WHITESMOKE COLOUR = #F5F5F5
    DARK GREY COLOUR = #555555
    MEDIUM GREY COLOUR = #9D9D9D
    LIGHT GREY COLOUR = #DEDEDE
    BACKGROUND OF WEBSITE = #BABABA

    NAVBAR BACKGROUND COLOUR = #2D2D2D
    NAVBAR TEXT COLOUR = #9C9C9C

    SCARY RED = #CC3333
    CREEPY BLUE = #3366CC
    GORY GREEN = #009966
    JUMPY YELLOW = #FFCC66

*/


body, html {
    background-color: #BABABA;
    height: 100%;
    margin: 0;
}

#searchIcon {
    height: auto;
    width: 17px;
    margin-top: -3px;
}

#disclaimer {
    bottom: 0;
    width: 100%;
    position: fixed;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #CC3333;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #F5F5F5;
    text-align: center;
    box-shadow: 0px 0px 3px #555555;
}

.xDisclaimer {
    text-align: right;
    font-size: 2em;
    margin-bottom: -20px;
    margin-right: -20px;
}

.closeDisclaimer:hover {
    cursor: pointer;
}

/* CUSTOM SCROLLBAR */
/* Width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }










#imageCoverPhotoBackground {
    position: relative;
    min-width: 950px;
    width: 100%;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.oopsStyle {
    color: #F5F5F5;
    font-size: 6em;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-top: 150px;
    margin-bottom: -6px;
}

.errorStyle {
    color: #555555;
    font-size: 2.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    background-color: #F5F5F5;
}

.messageStyle {
    color: #F5F5F5;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-top: 30px;
}

.searchOption {
    cursor: pointer;
}













/*Makes certain elements responsive when window is shrunk*/

@media screen and (max-width: 767px) /*This is the exact size of when the navbar collapses*/ {

    .navbar-form {
        margin: 0;
        border: 0;
        box-shadow: none;
    }

    .form-control {
        font-size: 12px;
    }
}


@media screen and (min-width: 768px) /*This is the exact size of when the navbar collapses*/ {

    /*Makes it so that the menu items in the navbar dropdown on hover only when the navbar isn't collapsed - https://stackoverflow.com/questions/8878033/how-to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click*/
    .dropdown-menu li:hover {
        visibility: visible;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown:hover {
        background-color: #0a0a0a;
    }
    /*End dropdown on hover*/

}

/*End of responsive CSS*/
