body
{
    background: #070507;
    text-align: center;
}


svg
{
    width: 220px;
    height: 50px;
    padding-top: 100px;
}




p
{
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 30px;
    margin-top: 20px;
}

#myVideo
{
    width: 100%;
    margin-top: -50px;
}



.item-video
{
    position: absolute;
    z-index: -1;

}




/*Animation Stuff*/
svg .draw
{
    stroke: #ffffff;
    stroke-width: 30px;
    fill: transparent;
    stroke-dasharray: 2169;
    stroke-dashoffset: 2169;
    animation-name: animateLogo;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}


.item-text
{
    opacity: 0;
    animation-name: animateText;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
}

#myVideo
{
    opacity: 0;
    animation-name: animateVideo;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
}



@keyframes animateLogo 
{
    0% 
        {
        stroke-dashoffset: 2169;
        }
    
    100% 
        {
        stroke-dashoffset: 4338;
        }
}

@keyframes animateText 
{
    0% 
        {
        opacity: 0;
        }
    
    100% 
        {
        opacity: 1;
        }
}

@keyframes animateVideo 
{
    0% 
        {
        opacity: 0;
        }
    
    100% 
        {
        opacity: 1;
        }
}