@font-face {
    font-family: 'FuturaHandwritten';
    font-style: normal;
    src: url('FuturaHandwritten.ttf') format('truetype');
}

html, body {
    width: 100%;
    height: 100%;
}

body {

    margin: 0;
    overflow: auto;

    /*background: #fff;*/

    font-family: 'FuturaHandwritten';
    /*color: #333;*/
    font-size: 20px;
    background-color: steelblue;

}

@media only screen and (max-width: 600px) {
    body {
        font-size: initial;
    }
}

@media only screen and (max-height: 700px) {
    #main {
        top: 30px;
        padding-bottom: 50px;
    }
}

#main {
    width: 100%;
    /*height: calc(100% - 60px);*/
    position: relative;
    overflow: auto;
    top: 80px;
}

.object {
    position: absolute;
    transition: left 0.5s ease-in-out, top 0.5s ease-in-out;
}

.fader {
    transition: opacity 0.5s ease-in-out !important;
}

