/*
Theme: Mixte Consulting
*/



html{
    overflow: auto;
    background-color: #000;
}
body {
    font-family: 'helvetica';
    font-size: 0.9vw;
    line-height: 1.1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body, select, input, textarea {
    color: #fff;
}

a {color: #fff; text-decoration: none;}
a:hover {color: #fff;}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #000; color: #FEFF00; text-shadow: none;}
::selection {background: #000; color: #FEFF00; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fff; color: #fff;}

ins {background-color: #fff; color: #000; text-decoration: none;}
mark {background-color: #fff; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }






/*
-------------------------------------------------------------------------------*/


body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header {
    height: 8px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FEFF00;
}
.logo {
    width: 20vw;
}
.footer {
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.footer a {
    color: #fff;
}


    
/*
-------------------------------------------------------------------------------*/


.mobile{display: none;}




@media screen and (max-width: 960px) {
    
    .desktop{display: none;}
	.mobile{display: block;}
    
    body {
        font-size: 4vw;
    }
    .logo {
    width: 80%;
    }
    



        
} 