*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

::selection {
    background: #36454f;
    color:#000;
}
::-moz-selection {
    background: #36454f;
    color:#000;
}

body {
    background: #000000;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.25;
    margin:0;
    padding:0;
    font-family: 'Roboto', sans-serif;
    cursor:none;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
}

.large-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

#large-header {
    background-image: url("../images/bg2.jpg");
}

.main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    color:#36454f;
    text-align: center;
    font-weight:900;
    font-size:5em;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -ms-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}

.main-title:hover,
.main-title .glow {
    text-shadow: 0 0 2px black, 0 0 2px black,0 0 2px black,0 0 20px red,0 0 5px red,0 0 10px red,0 0 20px red,0 0 30px red;
    color:white;
}

.thin {font-weight:100;}

@media(max-width:650px) {
    .main-title {font-size:.4vw;}
}