  /*                 */
 /*   Main styles   */
/*                 */


/* Uncomment if offline */

/*
@font-face {
    font-family: 'Varela Round';
    src: url(./../fonts/VarelaRound-Regular.ttf);
}
*/

html {
    font-family: 'Varela Round', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

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

body {
    background-color: #222;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    background: gray url("./../img/bg.png") repeat;
    width: 100%;
    height: 100vh;
    z-index: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.logo {
    position: relative;
    margin: 0 auto;
    background: transparent;
    height: 100vh;
    width: 78vh;
}

@media screen and (max-width: 700px) {
    .logo {
        height: 90vmin;
        width: 72vmin;
        margin-top: 20vmax;
    }
}

@media screen and (max-width: 700px) and (orientation: landscape) {
    .logo {
        margin-top: 0;
    }
}

.tech,
.info {
    width: 900px;
}

.tech {
    margin: 0 auto;
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 50px;
    text-align: justify;
}

@media screen and (max-width: 900px) {
    .info {
        width: 90%;
    }
}

footer {
    position: relative;
    display: block;
    width: 100%;
    top: 100vh;
    z-index: 10;
    color: #f2f2f2;
    background: transparent;
    text-shadow: 0 0 2px black;
}

.info {
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 0.8em;
    margin: 0 auto;
}

.info div {
    position: absolute;
}

.info .mail {
    margin-left: 0;
}

.info .year {
    right: 0;
}

  /*              */
 /*  SVG STAFF   */
/*              */

/* 
Classes that have been generated by
https://petercollingridge.appspot.com/svg-editor 
*/

.svg0 {
    fill: #f3f3f3;
    font-size: 20px;
    font-family: 'Varela Round';
    letter-spacing: 0;
    line-height: 125;
    word-spacing: 0;
}

.svg1 {
    fill: none;
    stroke-linecap: round;
    stroke-width: 4;
    stroke: #f3f3f3;
}

.svg2 {
    fill: none;
    stroke-width: 4;
    stroke: #f3f3f3;
}

.svg3 {
    fill: #f3f3f3;
}

.svg4 {
    font-family: 'Varela Round';
}

.svg6 {
    fill: #f3f3f3;
}

/* Custom svg styling */

svg rect {
    stroke-dasharray: 1000;
    -webkit-animation: rect-dash 2s ease-out forwards;
       -moz-animation: rect-dash 2s ease-out forwards;
            animation: rect-dash 2s ease-out forwards;
}

svg path {
    stroke-dasharray: 300;
    -webkit-animation: path-dash 3.8s ease-out forwards;
       -moz-animation: path-dash 3.8s ease-out forwards;
            animation: path-dash 3.8s ease-out forwards;
}

svg circle {
    stroke-dasharray: 30;
    -webkit-animation: circle-dash 3.5s ease-out forwards;
       -moz-animation: circle-dash 3.5s ease-out forwards;
            animation: circle-dash 3.5s ease-out forwards;
}

svg .svg6,
svg .svg4 {
    -webkit-animation: birth 4s ease-out forwards;
       -moz-animation: birth 4s ease-out forwards;
            animation: birth 4s ease-out forwards;
}

/* Flow animations */


@-webkit-keyframes rect-dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}


@-moz-keyframes rect-dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}


@keyframes rect-dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes path-dash {
    0%,
    50% {
        stroke-dashoffset: 300;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes path-dash {
    0%,
    50% {
        stroke-dashoffset: 300;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes path-dash {
    0%,
    50% {
        stroke-dashoffset: 300;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes circle-dash {
    0%,
    80% {
        stroke-dashoffset: 30;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes circle-dash {
    0%,
    80% {
        stroke-dashoffset: 30;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes circle-dash {
    0%,
    80% {
        stroke-dashoffset: 30;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes birth {
    0%,
    60% {
        fill: rgba(255, 255, 255, 0);
    }
    100% {
        fill: rgba(255, 255, 255, 1);
    }
}

@-moz-keyframes birth {
    0%,
    60% {
        fill: rgba(255, 255, 255, 0);
    }
    100% {
        fill: rgba(255, 255, 255, 1);
    }
}

@keyframes birth {
    0%,
    60% {
        fill: rgba(255, 255, 255, 0);
    }
    100% {
        fill: rgba(255, 255, 255, 1);
    }
}

/*  by Yuriy Tupychak   */