﻿

header .navbar {
    background-color: transparent !important;
    color: white !important;
    border: 0 !important;
}

.navbar a, .navbar span {
    color: white !important;
}

@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');







h1 {
    border-right: solid 3px rgba(0,0,0,.75);
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Source Code Pro', monospace;
    margin: 0 auto;
    color: white;
    font-size: 8vw;
    letter-spacing: -1.3vw;
}







/* Animation */

h1 {
    animation: animated-text 4s steps(29,end) 1s 1 normal both, animated-cursor 600ms steps(29,end) infinite;
}



/* text animation */



@keyframes animated-text {

    from {
        width: 0;
    }



    to {
        width: 900px;
    }
}



/* cursor animations */



@keyframes animated-cursor {

    from {
        border-right-color: rgba(0,255,0,.75);
    }



    to {
        border-right-color: transparent;
    }
}



.main-background {
    background:  url(../img/background-index.png);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
}



video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
}



.viewport-header {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .viewport-header img {
        margin: 0 auto;
    }
