/* roboto-mono-500 - latin */
@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 500;
    src: local(''),
    url('fonts/roboto-mono-v21-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/roboto-mono-v21-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-mono-regular - latin */
@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('fonts/roboto-mono-v21-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/roboto-mono-v21-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-mono-600 - latin */
@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 600;
    src: local(''),
    url('fonts/roboto-mono-v21-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/roboto-mono-v21-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
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: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html{
    height: -webkit-fill-available;
}
body{
    background-color: #040303;
    font-family: 'Roboto Mono';
    min-height: 100vh;
    min-height: -webkit-fill-available;

    background-image: url('bolo_bg.jpg');
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.container{
    /*height: 100vh;*/
    /*min-height: 100vh;*/
    /*min-height: -webkit-fill-available;*/
    /*flex: 1;*/
    /*background-image: url('bolo_bg.jpg');*/
    /*background-position: center;*/
    /*background-size: auto 100%;*/
    /*background-repeat: no-repeat;*/
}
.text {
    position: absolute;
    bottom: 7vh;
    left: 50%;
    transform: translateX(-20%) rotate(-1deg);
}

.text a{
    font-size: 30px;
    color: #fff0b0;
    text-decoration: none;
}
@media screen and (max-width: 992px) {
    .text {
        left: 50%;
        transform: translateX(-50%) rotate(-1deg);
    }
    .text a{
        font-size: 24px;

    }
}
.glow {
    text-align: center;
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    -moz-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 7px #D75A01FF, 0 0 10px #D75A01FF, 0 0 12px #D75A01FF, 0 0 15px #D75A01FF, 0 0 17px #D75A01FF;
    }
    to {
        text-shadow: 0 0 5px #fff, 0 0 7px #F89400FF, 0 0 10px #F89400FF, 0 0 12px #F89400FF, 0 0 15px #F89400FF, 0 0 17px #F89400FF, 0 0 10px #F89400FF ;
    }
}