*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
    font-weight: lighter;
    letter-spacing: 1px;
    word-spacing: 2px;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #333;
    color: #fff;
    cursor: default;
    background: url('../Images/background.jpg') no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    word-wrap: break-word;
}

.content {
    display: inline-block;
    padding: 10%;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
}

a {
    text-decoration: none;
}

.katalog {
    border-top: 1px solid #999;
    padding: 10px 0;
    margin: 10px 0;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .5em 0;
    font-size: 80%;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    text-align: center;
}


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

.radius-5 {
    border-radius: 5%;
    -moz-border-radius: 5%;
    -webkit-border-radius: 5%;
}

.radius-50 {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.solidbottom {
    box-shadow: 0 .1em .5em #F7F7F7;
    -webkit-box-shadow: 0 .1em .5em #F7F7F7;
    -moz-box-shadow: 0 .1em .5em #F7F7F7;
}

.animate {
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.animateSlow {
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.invisible {
    display: none;
}

.removeStage {
    top: -100%;
}

.scaleZero {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.scaleNormal {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

@media only screen and (min-width :1024px) {
    html,
    body {
        font-size: 100%;
    }
    .content {
        height: 70%;
        margin: 5% 0;
    }
}

@media only screen and (min-width: 468px) and (max-width: 1024px) {
    html,
    body {
        font-size: 110%;
    }
    .container {
        height: 80%;
    }
    .content {
        margin-top: 10%;
    }
}