@charset "UTF-8";

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    line-height:1;
}

body{
	font-family: 'Raleway', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
}


#content, #loading {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 400;
}
#content{
    background: linear-gradient(50deg, #62296e, #2c2886, #1e4445, #682b93, #5d053f, #3f416a, #3e0839);
    background-size: 1400% 1400%;
    -webkit-animation: bgcanim 30s ease infinite;
    -moz-animation: bgcanim 30s ease infinite;
    -o-animation: bgcanim 30s ease infinite;
    animation: bgcanim 30s ease infinite;
}
@-webkit-keyframes bgcanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes bgcanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes bgcanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes bgcanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
.pauseanim{
    -webkit-animation-play-state:paused !important;
    -moz-animation-play-state:paused !important;
    -o-animation-play-state:paused !important; 
    animation-play-state:paused !important;
}

#loading{
    z-index:999;
    background: linear-gradient(50deg, #3f416a, #2c2886);
}

#contentrow, #loading div{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-weight: 100;
    font-size: 2em;
}
#showcontent{
    width: 100%;
}
#showcontent h1{
    font-size: 1em !important;
}
#showcontent span{
    display: block;
    font-size: 0.6em !important;
    padding-top: 10px;
    opacity: 0.4;
}
#somerow{
    width: 100%;
    display:block;
    clear: both;
    margin-top: 1em;
    float:left;
}
#somerow a{
    font-size: 4em;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;    
}
#somerow a:hover{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#videocontrol{
    position: absolute;
    top: 2em;
    left: 2em;
    z-index: 500;
    color: #fff;
    font-size: 0.8em;
    cursor: pointer;
}

#loading div span {
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #fff;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 1s linear infinite;
    animation: spinthis 1s linear infinite;
    display: inline-block
}
@-webkit-keyframes spinthis {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spinthis {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    #contentrow{font-weight: 300;} 
}
@media screen and(-webkit-min-device-pixel-ratio:0) {
  #contentrow {-chrome-:only(; 
     font-weight: 300;
  );} 
}
@media
not screen and (-webkit-min-device-pixel-ratio: 2),
not screen and (   min--moz-device-pixel-ratio: 2),
not screen and (     -o-min-device-pixel-ratio: 2/1),
not screen and (        min-device-pixel-ratio: 2),
not screen and (                min-resolution: 192dpi),
not screen and (                min-resolution: 2dppx) { 

  #contentrow{font-weight: 300 !important;} 

}

/* RESPONSIVE */

@media only screen and (max-width: 768px) {
    [class^="icon-"]::before, [class*=" icon-"]::before {
        margin-right: .1em !important;
        margin-left: .1em !important;
    }    
}
@media only screen and (max-width: 648px) {
    #somerow a{font-size:3em;}
}

@media only screen and (max-width: 520px) {
    #showcontent{padding-top:1em;}
}
@media only screen and (max-width: 500px) {
    #somerow{
        max-width: 300px;
        margin: 1em auto 0px auto !important;
        float: none !important;
    }
    [class^="icon-"]::before, [class*=" icon-"]::before {
        margin-right: 0em !important;
        margin-left: 0em !important;
        margin-bottom: .1em !important;
    }
    
    
}