/* latin-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local('Raleway'), 
            local('Raleway-Regular'), 
            url('../fonts/Raleway-Regular.ttf') format('truetype');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local('Raleway'), 
            local('Raleway-Regular'), 
            url('../fonts/Raleway-Regular.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* latin-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: local('Raleway Medium'), 
            local('Raleway-Medium'), 
            url('../fonts/Raleway-Medium.ttf') format('truetype');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: local('Raleway Medium'), 
            local('Raleway-Medium'), 
            url('../fonts/Raleway-Medium.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
    font-family: 'Bebas'; 
    src: url('../fonts/BEBAS.woff') format('woff'); 
    font-weight: normal; 
    font-style: normal; 
}
  
html {
    font-family: 'Raleway', sans-serif;
    height: 100%;
}
body {
    height: 100%;   
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    box-sizing: border-box;
    text-align: center;
    background: #000000;
    color: white;
}
body:before{
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    z-index: -10;
    display: block;
    background: #000000;
    background-size: cover;
    height: 100%;
    width: 100%;
    filter: blur(5px);
}
header {
    font-family: 'Bebas', sans-serif;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-end;
    width: 100%;
}
header h1, header h2 {
    margin: 0;
    width: 100%;
    text-align: center;
    align-self: flex-end;
}
header.home{
    height: 50%;
}
header.home h1.site-title {
    font-size: 3.5em;
    padding-bottom: .1em;
    box-shadow: 0px 20px 30px -10px rgba(0,0,0,.5);
}
header.home h1.site-title:after {
    position: fixed;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.25);
    background-size: cover;
    transform-origin: top;
}
header.home h2.site-tagline {
    font-size: 1.8em;
    line-height: 2em;
}
header.home h2.site-tagline:before {
    position: fixed;
    z-index: -5;
    left: 0;
    right: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #000000;
    background-size: cover;
    filter: blur(20px);
    transform-origin: top;
}
main{
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.4em;
}
main a{
    color:white;
    text-decoration: none;
    border-bottom: dashed white 1px;
    background-color: rgba(255,255,255,.25);
    padding: 0px 3px;
}
main a:hover{
    background-color: rgba(255,255,255,1);
    color: black;
    text-decoration: none;
    border-bottom: dashed black 1px;
}
main section p{
    padding: 5px 5px;
}
footer{
    height: 2.5em;
    width: 750px;
    margin: 0 auto;
}
footer .block{
    float: left;
    line-height: 2.5em;
    height: 2.5em;
}
footer ul{
    float: right;
    margin: 0 5px 0 0;
    position: relative;
    padding: 0;
    font-size: 2.5em;
}
footer ul li{
    display: inline-block;
    padding: 0 5px 0 0;
}
footer ul li a:hover{
    color: white;
}
footer ul li a{
    color: #aaa;
}
footer {
    padding: 10px;
    color: #aaa;
}
@media only screen and (max-width: 750px){
    footer{
        width: 100%;
        padding: 0 5px;
    }
}
@media only screen and (max-height: 470px){
    header{
        display: block;
    }
}
@media only screen and (max-width: 320px){
    header.home h1.site-title {
        font-size: 2.5em;
    }

    header.home h2.site-tagline {
        font-size: 1.3em;
        line-height: 1.5em;
        padding-top: 5px;
    }
}
@media only screen and (max-width: 400px){
    footer{
        display: flex;
        flex-direction: column;
    }
    footer .block{
        order: 2;
        height: auto;
        text-align: center;
        width: 100%;
    }
    footer ul{
        order: 1;
        width: 100%;
        text-align: center;
        margin: 0;
    }
}
