@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/comfortaa-v22-latin-300.eot');
    src: local(''),
         url('fonts/comfortaa-v22-latin-300.eot?#iefix') format('embedded-opentype'),
         url('fonts/comfortaa-v22-latin-300.woff2') format('woff2'),
         url('fonts/comfortaa-v22-latin-300.woff') format('woff'),
         url('fonts/comfortaa-v22-latin-300.ttf') format('truetype'),
         url('fonts/comfortaa-v22-latin-300.svg#Comfortaa') format('svg');
  }

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/comfortaa-v22-latin-regular.eot');
    src: local(''),
         url('fonts/comfortaa-v22-latin-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/comfortaa-v22-latin-regular.woff2') format('woff2'),
         url('fonts/comfortaa-v22-latin-regular.woff') format('woff'),
         url('fonts/comfortaa-v22-latin-regular.ttf') format('truetype'),
         url('fonts/comfortaa-v22-latin-regular.svg#Comfortaa') format('svg');
  }

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

body {
    font-weight: 300;
    font-family: 'Comfortaa', sans-serif;
    color: #666;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#logo {
    font-size: 40px;
    color: #69d500;
    -webkit-animation: appear .4s ease-in-out forwards;
            animation: appear .4s ease-in-out forwards;
}

#logo > span {
    display: inline-block;
    vertical-align: middle;
}

#logo .name {
    color: #666;
    overflow: hidden;
    -webkit-animation: typingLogo .4s .6s ease-in-out both;
            animation: typingLogo .4s .6s ease-in-out both;
}

.description {
    font-family: monospace;
    padding: 40px 0;
    -webkit-animation: appear .4s 1.2s ease-in-out both;
            animation: appear .4s 1.2s ease-in-out both;
}

.description p {
    margin: 0;
}

.description a {
    margin: 0;
    text-decoration: none;
    display: block;
    color: #666;
}

.description > p::before,
.description > a::before {
    content: '// ';
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes typingLogo {
    0% {
        width: 0;
    }

    100% {
        width: 182px;
    }
}

@keyframes typingLogo {
    0% {
        width: 0;
    }

    100% {
        width: 182px;
    }
}
