@charset "UTF-8";
/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 102%;
    font-family: apertura, sans-serif;
    font-weight: 400;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000;
}
.inner {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}
.left {
    float: left;
    width: 50%;
}
.right {
    float: right;
    width: 50%;
}
/* Nav and Footer */
nav {
    width: 100%;
    background-color: #000;
    height: 30px;
    overflow: hidden;
    color: #fff;
}
nav li {
    float: left;
    list-style: none;
    margin-top: 3px;
}
nav li:not(:first-child) {
    border-left: 3px solid #ffc726;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
}
nav a {
    text-decoration: none;
    color: #fff;
}
nav a:hover {
    color: #ffc726;
}
nav .right {
    margin-top: 3px;
    text-align: right;
}
/* Footer */
footer {
    background-color: #000;
    height: 70px;
    width: 100%;
    color: #fff;
    overflow: hidden;
}
/* Typography */
h1 {
    font-size: 300%;
    padding: 30px 0 30px 0;
}
h2 {
    font-size: 220%;
    padding: 2px 0 2px 0;
}
h3 {
    font-size: 170%;
}
strong, b {
    font-weight: 800;
}
span {
    font-weight: 800;
    color: #ffc726;
}
blockquote {
    display: block;
    width: 90%;
    margin: auto;
    font-style: italic;
    border-left: solid #a091fa 3px;
    padding: 10px;
    background-color: #fafafa;
    line-height: 150%;
}

/* Websites */
#block-websites {
    height: auto;
    background: url("../img/bg-blue.jpg");
    color: #fff;
    padding: 20px 0 10px 0;
}
#block-websites ul, #block-websites li {
    padding: 0;
    border: 0;
}
#block-websites ul {
    margin: 0 auto 30px auto;
    width: 100%;
    text-align: center;
}
#block-websites li {
    position: relative;
    margin: 1%;
    display: inline-table;
    overflow: hidden;
    border: #fff 5px solid;
    border-radius: 50%;
    box-shadow: 0 0 10px 1px #aaa;
    background-color: #fff;
}
#bsn {
    background: url("../img/web-bsn.jpg");
    background-size: cover;
    background-position: center center;
}
#mrlangford {
    background: url("../img/web-mrlangford.jpg");
    background-size: cover;
    background-position: center center;
}
#weggo {
    background: url("../img/web-weggo.jpg");
    background-size: cover;
    background-position: center center;
}
#block-websites a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    display: block;
    text-indent: -999em;
}
#block-websites li:hover {
    box-shadow: 0 0 10px 1px #fff;
}

/* Extra small devices (phones, 480px and down) */
@media only screen and (max-width: 480px) {
    nav, footer {
        /*background-color: red;*/
    }
    h1 {
        font-size: 170%;
    }
    h3 {
        font-size: 100%;
    }

}
/* Small devices (portrait tablets and large phones, 768px and up) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
nav, footer {
        /*background-color: green;*/
    }
    h1 {
        font-size: 275%;
    }
}