﻿@import url(https://fonts.googleapis.com/css?family=Playball|Open+Sans+Condensend:300);
body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background-color: snow;
}

div {
    display: inline-block;
}

.bigger {
    margin: 0;
    font-size: 4vh;
    font-weight: 400;
    text-transform: uppercase;
    color: #093776;
    display: inline-block;
    position: relative;
}

.text {
    max-width: 400px;
    width: 100%;
    text-align: center;
    color: #404040;
}

    .text.txt-center {
        text-align: center;
    }

    .text a {
        color: #0fe4d2;
    }

.has-animation {
    position: relative;
}

    .has-animation p, .has-animation img {
        opacity: 0;
    }

    .has-animation.animate-in p, .has-animation.animate-in img {
        animation: textHidden 0.1s 1.1s forwards;
    }

    .has-animation.animate-in:before, .has-animation.animate-in:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        z-index: 10;
    }

    .has-animation.animate-in:before {
        background-color: teal;
    }

    .has-animation.animate-in:after {
        background-color: yellowgreen;
        animation-delay: .5s;
    }

    .has-animation.animation-ltr.animate-in:before {
        animation: revealLTR 1.8s ease;
    }

    .has-animation.animation-ltr.animate-in:after {
        animation: revealLTR 1s .6s ease;
    }

    .has-animation.animation-rtl.animate-in:before {
        animation: revealRTL 1.8s ease;
    }

    .has-animation.animation-rtl.animate-in:after {
        animation: revealRTL 1s .6s ease;
    }

@keyframes revealRTL {
    0% {
        width: 0;
        right: 0;
    }

    65% {
        width: 100%;
        right: 0;
    }

    100% {
        width: 0;
        right: 100%;
    }
}

@keyframes revealLTR {
    0% {
        width: 0;
        left: 0;
    }

    65% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes textHidden {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


html, body, svg {
    margin: 0;
    width: 100%;
    height: 100%;
}

.texto-tittle {
    font-family: 'Playball', cursive;
    font-size: 40px;
    fill: snow;
}

.texto-by {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 12px;
    fill: snow;
    letter-spacing: 1px;
    opacity: .8;
}
.container {
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

    .container span {
        text-transform: uppercase;
        display: block;
    }

.mytext1 {
    color: white;
    font-size: 15vh;
    font-weight: 200;
    letter-spacing: 0vh;
    position: relative;
    animation: text 3s 1;
}
@keyframes text {
    0% {
        color: black;
    }

    30% {
        letter-spacing: 25px;
    }

    85% {
        letter-spacing: 8px;
    }
}
