@charset "utf-8";

/* Theme: Theme Galaxy Animation */

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857;
    color: rgba(255, 255, 255, 0.75);
    margin: 5px;
    cursor: default
}

a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    -webkit-transition: .25s;
    transition: .25s;
    cursor: pointer
}

a:focus,
a:hover {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    -webkit-transition: .25s;
    transition: .25s
}

a:focus {
    outline: 0;
    outline: 0 auto -webkit-focus-ring-color;
    outline-offset: 0
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

hr {
    margin-top: 21px;
    margin-bottom: 21px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

p {
    margin: 0 0 10.5px
}

cite {
    font-style: normal
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 10.5px
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dl {
    margin-top: 0;
    margin-bottom: 21px
}

dd,
dt {
    line-height: 1.42857
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

#sky-galaxy {
    z-index: -99;
    position: fixed;
    top: 0;
    left: 0;
    background: #03092b;
    -webkit-transition: background .8s ease-out;
    -moz-transition: background .8s ease-out;
    -o-transition: background .8s ease-out;
    transition: background .8s ease-out
}

#sky-galaxy,
#sky-galaxy .bg {
    width: 100%;
    height: 100%
}

#sky-galaxy * {
    position: absolute
}

#sky-galaxy .bg {
    background: #000
}

#sky-galaxy .bg.center {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 200px;
    margin: -100px 0 0 -200px;
    opacity: .8;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px
}

#sky-galaxy [class^=stars] {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

#sky-galaxy .stars-back {
    background: url(../images/back.png);
    -webkit-animation: orbit-clock-wise 440s infinite linear;
    -moz-animation: orbit-clock-wise 440s infinite linear;
    -o-animation: orbit-clock-wise 440s infinite linear;
    -ms-animation: orbit-clock-wise 440s infinite linear;
    animation: orbit-clock-wise 440s infinite linear
}

#sky-galaxy .stars-middle {
    background: url(../images/middle.png);
    -webkit-animation: orbit-counter-clock-wise 360s infinite linear;
    -moz-animation: orbit-counter-clock-wise 360s infinite linear;
    -o-animation: orbit-counter-clock-wise 360s infinite linear;
    -ms-animation: orbit-counter-clock-wise 360s infinite linear;
    animation: orbit-counter-clock-wise 360s infinite linear
}

#sky-galaxy .stars-front {
    background: url(../images/front.png);
    -webkit-animation: orbit-clock-wise 160s infinite linear;
    -moz-animation: orbit-clock-wise 160s infinite linear;
    -ms-animation: orbit-clock-wise 160s infinite linear;
    -o-animation: orbit-clock-wise 160s infinite linear;
    animation: orbit-clock-wise 160s infinite linear
}

@-webkit-keyframes orbit-clock-wise {
    0% {
        opacity: .4;
        -webkit-transform: rotate(0deg)
    }
    2% {
        opacity: .8
    }
    4% {
        opacity: .2
    }
    5% {
        opacity: .8
    }
    100% {
        opacity: .4;
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes orbit-counter-clock-wise {
    from {
        -webkit-transform: rotate(360deg)
    }
    to {
        -webkit-transform: rotate(0deg)
    }
}

@-moz-keyframes orbit-clock-wise {
    0% {
        opacity: .4;
        -moz-transform: rotate(0deg)
    }
    2% {
        opacity: .8
    }
    4% {
        opacity: .2
    }
    5% {
        opacity: .8
    }
    100% {
        opacity: .4;
        -moz-transform: rotate(360deg)
    }
}

@-moz-keyframes orbit-counter-clock-wise {
    from {
        -moz-transform: rotate(360deg)
    }
    to {
        -moz-transform: rotate(0deg)
    }
}

@-o-keyframes orbit-clock-wise {
    0% {
        opacity: .4;
        -o-transform: rotate(0deg)
    }
    2% {
        opacity: .8
    }
    4% {
        opacity: .2
    }
    5% {
        opacity: .8
    }
    100% {
        opacity: .4;
        -o-transform: rotate(360deg)
    }
}

@-o-keyframes orbit-counter-clock-wise {
    from {
        -o-transform: rotate(360deg)
    }
    to {
        -o-transform: rotate(0deg)
    }
}

@-ms-keyframes orbit-clock-wise {
    0% {
        opacity: .4;
        -ms-transform: rotate(0deg)
    }
    2% {
        opacity: .8
    }
    4% {
        opacity: .2
    }
    5% {
        opacity: .8
    }
    100% {
        opacity: .4;
        -ms-transform: rotate(360deg)
    }
}

@-ms-keyframes orbit-counter-clock-wise {
    from {
        -ms-transform: rotate(360deg)
    }
    to {
        -ms-transform: rotate(0deg)
    }
}

@keyframes orbit-clock-wise {
    0% {
        opacity: .4;
        transform: rotate(0deg)
    }
    2% {
        opacity: .8
    }
    4% {
        opacity: .2
    }
    5% {
        opacity: .8
    }
    100% {
        opacity: .4;
        transform: rotate(360deg)
    }
}

@keyframes orbit-counter-clock-wise {
    from {
        transform: rotate(360deg)
    }
    to {
        transform: rotate(0deg)
    }
}

@keyframes bouncing-loader {
  to {
    opacity: 0.5;
    transform: translate3d(0, -1rem, 0);
  }
}

.sky-loader {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.sky-loader > div {
  width: 1rem;
  height: 1rem;
  margin: 3rem 0.2rem;
  background: #8385aa;
  border-radius: 50%;
  animation: bouncing-loader 0.6s infinite alternate;
}

.sky-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}

.sky-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}

.sky-vertical-align {
    display: table-cell;
    width: calc(100vw - 10px);
    height: calc(100vh - 10px);
    vertical-align: middle;
}

.sky-vertical-align p {
    font-size: 14px;
    line-height: 24px; 
    margin: 10px auto;
    max-width: 75%;
    text-align: center;
}

.sky-vertical-align img {
    height: auto; 
    margin: 10px 0;
    max-width: 360px;
    width: 100%;
}

.sky-vertical-align a:hover {
    text-decoration: none;
}

p.paragraph {
    font-size: 18px;
    color: #eee;
}

p.paragraph a {
    font-size: 18px;
    background: rgb(255 255 255 / 65%);
    padding: 5px 8px;
    border-radius: 8px;
    color: black;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

p.paragraph a:hover {
    background: rgb(255 255 255 / 95%);
    padding: 5px 8px;
    border-radius: 8px;
    color: black;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

p.copyright {
    font-size: 14px;
    color: rgb(196, 196, 196);
    color: white;
}

p.copyright a {
    color: white;
    text-decoration: underline;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

p.copyright a:hover {
    text-decoration: underline;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}