body
{
    color: #fff;
    background-color: rgba(28,36,85,1);
}

.bkgd-1
{
    position: fixed;
    z-index: -1000;

    overflow: hidden;

    width: 100%;
    height: 100vh;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
    transition: all .5s ease-in-out;
    -webkit-animation: zoomin 60s ease-in infinite;
            animation: zoomin 60s ease-in infinite;

    background-image: url('../images/bkgd-1.jpg');
    background-position: center;
    background-size: cover;
}

.bkgd-2
{
    position: fixed;
    z-index: -750;

    overflow: hidden;

    width: 100%;
    height: 100vh;

    transition: all .5s ease-in-out;
    -webkit-animation: zoomin 30s ease-in infinite;
            animation: zoomin 30s ease-in infinite;

    background-image: url('../images/bkgd-2.png');
    background-position: center;
    background-size: cover;
}

.logoAnimate
{
    animation-duration: 5s;
}


.vignette
{
    box-shadow: 0 0 500px rgba(0,0,0,1) inset;
}

.v-100
{
    height: 100vh;
}

.btn-primary
{
    font-family: 'Exo', sans-serif;

    letter-spacing: .1rem;

    color: rgba(253,186,59,1);
    border: none;
    background-color: rgba(19,27,63,.95);
}

.btn-primary:hover
{
    cursor: pointer;

    color: rgba(255,255,255,1);
    border: none;
    background-color: rgba(76,179,176,.95);
}

/* The outermost element*/
.header-wrapper
{
    overflow: hidden;

    width: 400px;
    height: 200px;

    text-align: center;
}

.zoominheader
{
    position: relative;

    overflow: hidden;

    width: 400px;
    height: 200px;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
    transition: all .5s ease-in-out;
    -webkit-animation: zoomin 10s ease-in infinite;
            animation: zoomin 10s ease-in infinite;
    text-align: center;

    background: url('https://2.bp.blogspot.com/-jV7dJqJnzAQ/V1tLFVCPw_I/AAAAAAAAJhk/EH40vG3VTZ4t7gn38pHKA0nW9RyI84OZwCK4B/s400-p/sts-min.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto;
}

/* The innermost element*/
.zoomoutheader
{
    overflow: hidden;

    width: 400px;
    height: 200px;

    text-align: center;

    background: none;
}



/* Zoom in Keyframes */
@-webkit-keyframes zoomin
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(1.5);
    }
    100%
    {
        transform: scale(1);
    }
}
@keyframes zoomin
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(1.5);
    }
    100%
    {
        transform: scale(1);
    }
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(.5);
    }
    100%
    {
        transform: scale(1);
    }
}
@keyframes zoomout
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(.5);
    }
    100%
    {
        transform: scale(1);
    }
}/*End of Zoom out Keyframes */
