/* code for animated blinking cursor */
        .typed-cursor{
            opacity: 1;
            font-weight: 100;
            -webkit-animation: blink 0.8s infinite;
            -moz-animation: blink 0.8s infinite;
            -ms-animation: blink 0.8s infinite;
            -o-animation: blink 0.8s infinite;
            animation: blink 0.8s infinite;
        }
        @-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }


/* Fonts */

@font-face {
    font-family: 'SourceCodePro-Light';
    src: url('font/SourceCodePro-Light.eot');
    src: url('font/SourceCodePro-Light.eot?#iefix') format('embedded-opentype'),
         url('font/SourceCodePro-Light.woff') format('woff'),
         url('font/SourceCodePro-Light.ttf') format('truetype'),
         url('font/SourceCodePro-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceCodePro-Regular';
    src: url('font/SourceCodePro-Regular.eot');
    src: url('font/SourceCodePro-Regular.eot?#iefix') format('embedded-opentype'),
         url('font/SourceCodePro-Regular.woff') format('woff'),
         url('font/SourceCodePro-Regular.ttf') format('truetype'),
         url('font/SourceCodePro-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceCodePro-Medium';
    src: url('font/SourceCodePro-Medium.eot');
    src: url('font/SourceCodePro-Medium.eot?#iefix') format('embedded-opentype'),
         url('font/SourceCodePro-Medium.woff') format('woff'),
         url('font/SourceCodePro-Medium.ttf') format('truetype'),
         url('font/SourceCodePro-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* General */

div.type-wrap {
    margin-bottom: 30px;
}

div.wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
}


span#typed, span.typed-cursor {
    font-family: 'SourceCodePro-Medium';
    font-size: 40px;
    line-height: 50px;
    color: #000;
}

p#mail, p#twitter {
    font-family: 'SourceCodePro-Light';
    font-size: 14px;
    line-height: 18px;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0px;
}

p#profesion {
    font-family: 'SourceCodePro-Medium';
    font-size: 18px;
    line-height: 22px;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;
}

p#phone {
    font-family: 'SourceCodePro-Light';
    font-size: 14px;
    line-height: 18px;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0px;
}

p#mail a, p#twitter a {
    text-decoration: none;
    text-transform: none;
    color: #000;
    -webkit-transition: 0.4s color ease-in-out;
    -moz-transition: 0.4s color ease-in-out;
    -o-transition: 0.4s color ease-in-out;
    transition: 0.4s color ease-in-out;
}

p#mail a:hover, p#twitter a:hover {
    color: #727272;
    -webkit-transition: 0.4s color ease-in-out;
    -moz-transition: 0.4s color ease-in-out;
    -o-transition: 0.4s color ease-in-out;
    transition: 0.4s color ease-in-out;
}

.color1 { color: #6b3419; }
.color2 { color: #196ee3; }
.color3 { color: #d3a900; }
.color4 { color: #199e0f; }
.color5 { color: #a10e49; }
.color6 { color: #6817d6; }
.color7 { color: #2832a9; }
.color8 { color: #a21717; }
.color9 { color: #0b8b74; }
.color10 { color: #dc7612; }










