
html{
    font-size: 16px;
}

body{
    width: 100%;
    height: 100vh;
    overflow: hidden; 
    background-color: black;
    padding: 0;
    margin: 0;
}

.container{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.container video{
    width: 100%;
}

.container #video_mobile{
    display: none;
}

.container .logo_motion_container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .logo_motion_container video{
    width: 100%;
    mix-blend-mode: screen;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container .msg{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.container .msg p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container .msg .socialMedia a{
    color: white;
    font-size: 2rem;
    margin: 0 1px;
}

.cursor{
    position: relative;
    bottom: 10px;
    width: 24em;
    text-align: center;
    margin: 0 auto;
    color: white;
    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}


.typewriter-animation {
    animation: typewriter 3s steps(50) 1 normal both, 
            blinkingCursor 600ms steps(50) 8 normal forwards;
}

.msg1 {
    animation-delay: 2s;
}

@keyframes typewriter {
    from {
        width: 0; 
    }
    to {
        width: 100%; 
    }
}
@keyframes blinkingCursor{
    from { 
        border-right: 2px solid rgba(255,255,255,.75);
    }
    to { 
        border-right-color: transparent; 
    }
}

@media screen and (max-width: 1024px) {

    body{
        background-color: black;
    }

    .container #video_des{
        display: none;
    }

    .container #video_mobile{
        display: inline;
    }

    .container .logo_motion_container video{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(2);
    }

    .container .msg{
        bottom: 15%;
    }
}