body {
    margin: 0;

    overflow: hidden;
}

body:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: #000921 url("./../mode/default/img/backgrounds/bg2.jpg") no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

header {
    top: 0;
    left: 0;
    width: 100%;

    color: #fff;
    background: linear-gradient(to bottom, rgba(1,0,31, 0.5), transparent);
    font-size: xx-large;
    font-family: 'Exo 2', sans-serif;

    text-shadow: 0 3px 6px rgba(0,0,0, 0.4);
    position: fixed;
}

.text-odisseya-logo {
    float: left;
    margin: 2%;
}

.odisseya-score {
    float: right;
    margin: 2%;
}
.odisseya-score:before {
    content: "SCORE: ";
}
.odisseya-score:after {
    content: ".";
}

footer {
    background: radial-gradient(ellipse at bottom, rgba(4, 5, 30, 0.2) 0, transparent 40%);
    background-size: contain;
    width: 100%;
    bottom: 0;
    position: fixed;
    padding: 10px;
}

.station {
    width: 120px;
    height: 120px;
    margin: 0 auto;

    background: url("./../mode/default/img/objects/station.png") no-repeat;
    background-size: contain;
    -webkit-filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));

    transition: all 0.5s ease-in-out;
}
.station:hover {
    transform: scale(1.2);
}

odisseya-boat {
    width: 20%;
    height: 20%;

    -webkit-filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));

    position: absolute;
    transition: top 3s ease-out, left 3s ease-out, right 3s ease-out, transform 1s ease-in-out;
}

.boat {
    width: 40px;
    height: 100px;

    background: url("./../mode/default/img/objects/space-rocket-256.png") no-repeat center;
    background-size: contain;
}

.muha {
    width: 80px;
    height: 80px;

    background: url("./../mode/vagabond/img/objects/muha.gif") no-repeat center;
    background-size: contain;
}

@media only screen and (max-width: 768px){
    header {
        font-size: large;
    }

    .text-odisseya-logo {
        margin: 5% auto 0 auto;
        width: 100%;
        text-align: center;
    }

    .odisseya-score {
        margin: 2% auto 5% auto;
        width: 100%;
        text-align: center;
    }

    .boat {
        width: 28px;
        height: 58px;
    }

    footer {
        padding: 10px 0;
    }

    .station {
        width: 80px;
        height: 80px;
    }
}
