@font-face {
    font-family: "acknowtt";
    src: url("../fonts/acknowtt.ttf");
}

body{
    color: #FFF;
    font-family: "acknowtt";
    font-size: 30px;
    text-align: center;
    min-width: 600px;
    min-height: 800px;
    margin: 0;
    background-image:url('../images/background.png');
}

#innerContent{
    position: absolute;
    background-color: #58A1F3;
    width: 800px;
    min-height: 800px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#clouds{
    position: absolute;
    width: 100%;
    height: 157px;
    top: 25px;
    background-image: url('../images/small/clouds.png');
    background-repeat: repeat;
}

#houses{
    position: absolute;
    width: 100%;
    height: 56px;
    bottom: 0;
    background-image: url('../images/small/houses.png');
    background-repeat: repeat;
}

#content{
    position: absolute;
    text-align: center;
    top: 125px;
    bottom: 75px;
    left: 50px;
    right: 50px;
}

#bomber{
    position: absolute;
    top: 60px;
    left: 0;
    width: 83px;
    height: 75px;
    background-image: url('../images/small/bomber.png');
    /*-webkit-animation-duration: 10s;
    -webkit-animation-name: bomberSlide;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-duration: 10s;
    animation-name: bomberSlide;
    animation-iteration-count: infinite;
    animation-direction: alternate;*/
}

#boxes{
    position: relative;
}

.cafePress{
    position: absolute;
    top: 0;
    left: 150px;
}

@-webkit-keyframes bomberSlide {
    from {
        left: 0;
    }

    to {
        left: 85%;
    }
}

@keyframes bomberSlide {
    from {
        left: 0;
    }

    to {
        left: 85%;
    }
}