/*LAUNCH*/
.launch {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 2s;
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 2;
    width: 55%;
}

#launchSVG {
    width: 100%;
    margin: auto;
    transform: translate(-50%,-50%);
}

.mainSite {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 4s;
}

/*svg {

}*/
.shield {
    animation: stroke_fill 6s linear forwards;
    stroke-dasharray: 1588;
    stroke-dashoffset: 1200;
    animation-delay: .3s;
    cursor: pointer;
}

.slash {
    animation: dash_fill 6s linear forwards;
    stroke-dasharray: 888;
    stroke-dashoffset: 900;
    animation-delay: 2s;
}

.vsc-v, .vsc-s, .vsc-c {
    animation: path_fill 5s linear forwards;
    stroke-dasharray: 55;
    stroke-dashoffset: 55;
    animation-delay: .6s;
}

@keyframes stroke_fill {
    0% {
        stroke: #4f4f4e;
    }

    50% {
        stroke: #4f4f4e;
        stroke-dashoffset: 0;
    }

    75% {
        stroke: #4d4d4d;
        stroke-dashoffset: 0;
    }

    100% {
        stroke: #f9d748;
        stroke-dashoffset: 0;
    }
}

@keyframes path_fill {
    0% {
        fill: #fff;
    }

    50% {
        fill: #eee;
        stroke-dashoffset: 0;
    }

    75% {
        fill: #eee;
        stroke-dashoffset: 0;
    }

    100% {
        fill: #000;
        stroke: #000;
        stroke-dashoffset: 0;
    }
}

@keyframes dash_fill {
    0% {
        fill: #fff;
    }

    50% {
        fill: #eee;
        stroke-dashoffset: 0;
    }

    75% {
        fill: #4d4d5d;
        stroke-dashoffset: 0;
    }

    100% {
        stroke: #f9d748;
        stroke-dashoffset: 0;
    }
}

/*FINLAY*/
body {
    margin: 0px;
    background-color: black;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    transition: background-image 2s ease-in-out;
    background-size: cover;
}

.nav {
    color: #929292;
    border: 0;
    /* background: none; */
    font-size: 2vmax;
    padding: 0;
    text-align: center;
    font-family: karla;
    cursor: pointer;
    background-color: #8a8a8a40;
    height: 7%;
    width: 28%;
    z-index: 24;
    user-select: none;
}

.nav:focus {
    outline: none;
}

.left {
    transform: translate(-50%,-50%) rotate(270deg);
    top: 50%;
    left: 5%;
    /* width:  100%; */
    position: fixed;
}

.right {
    transform: translate(-50%,-50%) rotate(90deg);
    top: 50%;
    left: 95%;
    /* width:  100%; */
    position: fixed;
}

.up {
    top: 50%;
    left: 5%;
    transform: translate(-50%,-50%) rotate(270deg);
    position: fixed;
}

.down {
    top: 50%;
    left: 5%;
    transform: translate(-50%,-50%) rotate(270deg);
    position: fixed;
}

#SHIELD_1 {
    display: block;
    user-select:  none;
}

#SHIELD_2 {
    display: none;
}

@keyframes example {
    0% {
        background-color: crimson;
        font-size: 3em;
        transform: rotate(-.01turn);
    }

    50% {
        border-style: dotted;
    }

    100% {
        background-color: #2196F3;
        font-size: 10em;
        transform: rotate(.01turn);
        border-style: dashed;
    }
}

@keyframes spinning {
    0% {
        font-size: 10em;
        transform: rotate(0turn);
    }

    100% {
        font-size: 100em;
        transform: rotate(1turn);
    }
}

#LOGO {
    position: fixed;
    transition-property: top, left, bottom, width;
    width: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 25%;
    transition-duration: 4s;
    transition-timing-function: ease-in-out;
    z-index: -1;
}

#CREST {
    fill: #60503257;
    transform-origin: center;
    transition-property: transform, fill;
    transition-duration: 6s;
    transition-timing-function: ease-in-out;
}

h1,h2,p {
    color: #e2be23;
    font-family: Karla;
    text-align: left;
    transition-property: text-align;
    transition-duration: 2s;
}

h1,h2,p,.nav {
    transition-property: color, background-color;
    transition-duration: 6s;
}

p {
    font-size: 1.25vmax;
}

h1 {
    font-size: 3vmax;
    font-weight: bold;
    padding-bottom: .25em;
    margin: 0;
}

h2 {
    font-size: 2vmax;
    margin: 0;
    font-weight: normal;
    padding-bottom: .25em;
    margin: 0;
}

.content {
    position: fixed;
    top: 15%;
    left: 45%;
    /* margin-top: 8%; */
    /* margin-right: 15%; */
    width: 40%;
    background-color: #8686862e;
    padding: 2%;
}

.homeButton {
    position: fixed;
    width: 80%;
    transform: translate(-50%,-50%) scale(.1);
    top: 90%;
    left: 95%;
    opacity: 0.5;
    z-index: 24;
}
