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


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

header {
    position: fixed;
    left: 0;
    top: 0;
    padding: 10px;
}

.entry {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 50%;
}
.entry .form-wrapper {
    display: flex;
    flex-direction: column;
}
.entry input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 3px 0;
    font-family: 'SuisseIntlMono';
    outline: none;
    font-size: 0.9vw;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.entry input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

.entry input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.entry input::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}


.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: 20vw;
    right: 15vw;
    top: calc(50vh - 10vw);
}

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

.data {
    font-family: 'SuisseIntlMono';
    position: fixed;
    bottom: 0;
    padding: 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;
    }

} 
