/*
 * This file is part of the cpcubed.ca package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this8 source code.
 *
 * @copyright 2015-2020 Blair D. Patterson
 * @license   MIT License
 */

html {
    height: 100%;
}

body {
    color: #d6d6d6;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    background: #242127;
}

a {
    color: #baa04a;
}

a:hover {
    transition: .5s color;
    color: #fff;
    text-decoration: underline;
}

.logo {
    transition: .5s all;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 32%;
    display: inline-block;
}

.logo:hover {
    text-decoration: none;
    filter: brightness(125%);
}

.sep {
    border-bottom: 2px solid #5e5e5e;
}

.bg {
    background: #242127;
    opacity: .9;
}

@media screen and (min-width: 768px) {
    body {
        background: #242127 url('/images/bg.png') 10% 100% no-repeat;
    }

    .logo {
        width: auto;
        display: inline;
    }
}

@media screen and (min-width: 992px) {
    body {
        background: #242127 url('/images/bg.png') 50% 100% no-repeat;
    }
}
