html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: table;
    color: #555;
    background: #cfcfcf;
    background: -webkit-radial-gradient(white, #cfcfcf); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(white, #cfcfcf); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(white, #cfcfcf); /* For Firefox 3.6 to 15 */
    background: radial-gradient(white, #cfcfcf); /* Standard syntax */
}

a {
    text-decoration: none;
    outline: none;
    color: #555;
    font-weight: 700;    
}

a:hover {
    color: #333;
}

img {
    width: 100%;
    height: 100%;
}

p {
    line-height: 1.2em;
}

.page-wrapper {
    position:absolute;
    width:100%;
    height:100%;
    
}

.center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    text-align: center;
}
.tiny-stars {
    overflow: hidden;
    text-align: center;
    position:fixed;
    top:0;
    width:100%;
    height:100%;
    display: inline-block;
    z-index:1;
    -webkit-animation:infinite-spinning 40s infinite linear;
    -moz-animation:infinite-spinning 40s infinite linear;
    -o-animation:infinite-spinning 40s infinite linear;
    animation:infinite-spinning 40s infinite linear;
}

.middle-stars {
    -webkit-animation:infinite-spinning 30s infinite linear;
    -moz-animation:infinite-spinning 30s infinite linear;
    -o-animation:infinite-spinning 30s infinite linear;
    animation:infinite-spinning 30s infinite linear;
}

.tiny-stars img{
	width: auto;
}

.main-container {
    display: table;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.content {
    width: 500px;
    position: relative;
    margin: 0 auto;
}

.content h4 {
    margin: 10% 0;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 700;
}

.bg-stars{
    position:fixed;
    top:0;
    left:0;
    background:transparent;
}

.credits {
    display: table-cell;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 30px;
    text-align: center;
}

.credits p {
    font-size: 0.8em;
    line-height: 0.8em;
}

@-webkit-keyframes infinite-spinning{
    from{
        -moz-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }

    to{
        -moz-transform:rotate(360deg);
        -ms-transform:rotate(360deg);
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-moz-keyframes infinite-spinning{
    from{
        -moz-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }

    to{
        -moz-transform:rotate(360deg);
        -ms-transform:rotate(360deg);
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-o-keyframes infinite-spinning{
    from{
        -moz-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }

    to{
        -moz-transform:rotate(360deg);
        -ms-transform:rotate(360deg);
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@keyframes infinite-spinning{
    from{
        -moz-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }

    to{
        -moz-transform:rotate(360deg);
        -ms-transform:rotate(360deg);
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@media (max-width: 1440px) {
    .tiny-stars, .middle-stars {
        -webkit-animation:none;
        -moz-animation:none;
        -o-animation:none;
        animation:none;
    }

    .tiny-stars img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width : 768px) {
    .content {
        width: 70%;
        bottom: 10%;
    }

    .content h4 {
        font-size: 1.2em;
    }
}