

/* Setting default font */
@font-face {
    src: url("https://fonts.googleapis.com/css?family=Lato&display=swap");
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: bold;
}
/*
My own tweaks to Bootstrap 4.0 (Mostly color and font tweaks) 
*/
html {
    background: url('../images/Background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    background-color: rgba(0,0,0,0);
    /*overflow: hidden;*/
}
body {
    background-color: rgba(0,0,0,0);
}
/*
body {
    background-image: url('https://hostedsandbox.s3.amazonaws.com/Project_Images/Background.jpg');
    background-color: #4e4f4f;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
}
*/
.card-header {
    color: #ffffff;
    background-color: #0c0c0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-body {
    border-style: solid;
    border-width: 1px;
    border-color: #0c0c0c;
}
.btn-dark {
    font-family: 'myFrazerFont_Lato_Medium';
    font-size: 16px;
    font-weight: bold;
    color: #fcc515;
    background-color: #0c0c0c;
}
.btn-dark:hover {
    font-family: 'myFrazerFont_Lato_Medium';
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #A73535;
}
.btn-danger {
    background-color: #A73535;
}
.btn-link {
    font-family: 'myFrazerFont_Lato_Medium';
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
.btn-link:hover {
    font-family: 'myFrazerFont_Lato_Medium';
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
/* Font specifics */
#FrazerFont_Medium {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: bold;
}
#FrazerFont_Large {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: bold;
}