/**********************************************************************************************************************/

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);

    }

    100% {

        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);

    }

    100% {

        -moz-transform: rotate(360deg);
    }
}
@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);

    }

    100% {

        -o-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {

        transform: rotate(0deg);

    }

    100% {
        transform: rotate(360deg);

    }
}
.rotateAnimation {
    -webkit-animation: rotate 100s normal linear infinite forwards;
    -moz-animation: rotate 100s normal linear infinite forwards;
    -o-animation: rotate 100s normal linear infinite forwards;
    animation: rotate 100s normal linear infinite forwards;
}
/**********************************************************************************************************************/
.frame {
    position: relative;
    margin: 0 auto;
    width: 1080px;
    height: 100%;
    overflow: hidden;
}
.frame h1 {
    position: absolute;
    top: 10px;
    width: 100%;
    font-family: 'MedievalSharp', cursive, sans-serif;
    color: whitesmoke;
    font-size: 4em;
    text-align: center;
}

.frame h2 {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-family: 'MedievalSharp', cursive, sans-serif;
    color: whitesmoke;
    font-size: 2em;
    text-align: center;
}

.frame h3 {
    position: absolute;
    bottom: 5px;
    width: 100%;
    color: whitesmoke;
    font-size: 0.75em;
    text-align: center;
}

.background {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -540px;
    margin-left: -540px;
    height: 1080px;
    width: 1080px;
    background: transparent url("../icons/csillagkep.png") 0 0 no-repeat;
}
.centeredObject {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -330px;
    margin-left: -480px;
    height: 660px;
    width: 960px;
    background: url("../icons/kapolna.png") 0 0 no-repeat;
}
.cover {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -360px;
    margin-left: -540px;
    height: 720px;
    width: 1080px;
    background: url("../icons/cover.png") 0 0 no-repeat;
}

/****/
html {
    background: black;
}

body {
    overflow-y: scroll;
}