/*
Author: andreamantegazza.it
Varsion: 1.2.0
*/



html{
    overflow: auto;
}
body {
    color: #fff;
    font-size: 2vw;
    line-height: 1em;
    font-family: 'DrukWideMedium';
    background-color: #0000ff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 10px;
}


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

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

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

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

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; }



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


@font-face {
    font-family: 'DrukWideMedium';
    src: url('../fonts/DrukWideMedium.eot');
    src: url('../fonts/DrukWideMedium.woff') format('woff'), url('../fonts/DrukWideMedium.ttf') format('truetype'), url('../fonts/DrukWideMedium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseIntlMono';
    src: url('../fonts/SuisseIntlMono.eot');
    src: url('../fonts/SuisseIntlMono.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SuisseIntlMono.woff2') format('woff2'),
        url('../fonts/SuisseIntlMono.woff') format('woff'),
        url('../fonts/SuisseIntlMono.ttf') format('truetype'),
        url('../fonts/SuisseIntlMono.svg#SuisseIntlMono') format('svg');
    font-weight: normal;
    font-style: normal;
}



.stroke{
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-size: 1.9vw;
    position: relative;
    top: -0.05vw;
}

.floppy {
    animation: spiny 20s linear infinite;
    position: fixed;
    width: 50vh;
    left: calc(50vw - 25vh);
    top: calc(50vh - 25vh);
}

@keyframes spiny {
    0% { transform: rotateZ(0deg);}
    100% { transform: rotateZ(359deg);}
}

.data {
    font-family: 'SuisseIntlMono';
    position: fixed;
    bottom: 0;
    padding-bottom: 10px;
    font-size: 0.9vw;
    line-height: 1.1em;
}



@media screen and (max-width: 960px) {
    
    body{
        font-size: 5vw;
        line-height: 1.2em;
    }
    
    .stroke{
        font-size: 0.9em;
        top: -0.15vw;
    }
    .floppy {
        animation: spiny 8s linear infinite;
        position: fixed;
        width: 60vw;
        left: 20vw;
        top: 50vw;
    }

} 
