/* ============================================================================================== 
SED Innovations
https://sed.am
https://mkrtchyan.ga
================================================================================================= */

* {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'OpenSans-Bold';
    src: URL('../fonts/OpenSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'OpenSans-Regular';
    src: URL('../fonts/OpenSans-Regular.ttf') format('truetype');
}

#introContainer {
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 600;
    width: 100%;
    height: 100vh;
}
#intro {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    text-align: center;
}

#intro .introHeader {
    top: 30%;
    font-family: 'OpenSans-Bold', sans-serif;
    font-size: 60px;
    position: absolute;
    z-index: 1000;
    color: #fff;
    width: 100%;
    letter-spacing: 30px;
    text-indent: 30px;
    /* text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8); */
}
#intro .introHeader span {
    color: #fff;
}
#intro .tagline {
    font-family: 'OpenSans-regular', sans-serif;
    font-size: 18px;
    color: #fff;
    padding-top: 20px;
    letter-spacing: 15px;
    text-indent: 15px;
}
#intro button {
    border-radius: 20px;
    border: 1x px solid #fff;
    color: #fff;
    padding: 20px;
    margin-top: 40px;
    font-size: 18px;
    background-color: transparent;
    text-indent: 15px;
    letter-spacing: 15px;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#intro header {
    background-color: rgba(33, 33, 33, 0.9);
    color: #ffffff;
    display: block;
    font: 14px/1.3 Arial, sans-serif;
    height: 50px;
    position: relative;
    z-index: 5;
}
#intro h2 {
    margin-top: 30px;
    text-align: center;
}
#intro header h2 {
    font-size: 22px;
    margin: 0 auto;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}
@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}
@-webkit-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}
@-moz-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}
@-ms-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}
@keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 0;
    }
}
@-webkit-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 0;
    }
}
@-moz-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 0;
    }
}
@-ms-keyframes move-clouds-back {
    from {
        background-position: 0;
    }
    to {
        background-position: 10000px 0;
    }
}
.stars,
.twinkling,
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.stars {
    background: #000 url(../img/stars.png) repeat top center;
    z-index: 0;
}
.twinkling {
    background: transparent url(../img/twinkling.png) repeat top center;
    z-index: 1;
    -moz-animation: move-twink-back 200s linear infinite;
    -ms-animation: move-twink-back 200s linear infinite;
    -o-animation: move-twink-back 200s linear infinite;
    -webkit-animation: move-twink-back 200s linear infinite;
    animation: move-twink-back 200s linear infinite;
}
.clouds {
    background: transparent url(../img/clouds3.png) repeat top center;
    z-index: 3;
    -moz-animation: move-clouds-back 200s linear infinite;
    -ms-animation: move-clouds-back 200s linear infinite;
    -o-animation: move-clouds-back 200s linear infinite;
    -webkit-animation: move-clouds-back 200s linear infinite;
    animation: move-clouds-back 200s linear infinite;
}
