html {
    height: 100%;
    overflow: hidden;  
    font-size:100%;

}

@media(min-width:60em){
        html{font-size:100%}
    }
@media(max-width:60em){
        #logo{font-size:10%}
    }


body {
    /*background: url(web_images/bg.png) no-repeat center center fixed;*/
    background: #507EC2;
    /*-webkit-background-size: cover;*/
    /*-moz-background-size: cover;*/
    /*-o-background-size: cover;*/
    background-size: cover;
    height: 100%;
    width: 100vh;
    flex: auto;

}
body a {
    background: #000;
    color: #fff;
}
div#outer {
    display: table;
    height: 100%;
    width: 100%;
}

div#container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#paragraph {
    padding: 20px 0 30px 40px;
    margin: 0 auto;
    text-align: left;
    width: 560px;
    color: #146b9d;
    font-size: 11pt;
    font-weight: bold;
    font-family: Verdana;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}

#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: fill 0.5s ease forwards 6s;
}


﻿
#logo path:nth-child(1){
    stroke-dasharray: 6472px;
    stroke-dashoffset: 6472px;
    animation: line-anim 2s ease forwards 0.3s;
} 

#logo path:not(:first-child):hover {
    fill: gray;
    opacity: 1;
} 
#logo path:nth-child(2){
    stroke-dasharray: 399px;
    stroke-dashoffset: 399px;
    animation: line-anim 2s ease forwards 0.6s;
} 
#logo path:nth-child(3){
    stroke-dasharray: 399px;
    stroke-dashoffset: 399px;
    animation: line-anim 2s ease forwards 0.9s;
} 
#logo path:nth-child(4){
    stroke-dasharray: 434px;
    stroke-dashoffset: 434px;
    animation: line-anim 2s ease forwards 1.2s;
} 
#logo path:nth-child(5){
    stroke-dasharray: 239px;
    stroke-dashoffset: 239px;
    animation: line-anim 2s ease forwards 1.5s;
} 
#logo path:nth-child(6){
    stroke-dasharray: 239px;
    stroke-dashoffset: 239px;
    animation: line-anim 2s ease forwards 1.8s;
} 
#logo path:nth-child(7){
    stroke-dasharray: 506px;
    stroke-dashoffset: 506px;
    animation: line-anim 2s ease forwards 2.1s;
} 
#logo path:nth-child(8){
    stroke-dasharray: 246px;
    stroke-dashoffset: 246px;
    animation: line-anim 2s ease forwards 2.4s;
} 
#logo path:nth-child(9){
    stroke-dasharray: 315px;
    stroke-dashoffset: 315px;
    animation: line-anim 2s ease forwards 2.7s;
} 
#logo path:nth-child(10){
    stroke-dasharray: 56px;
    stroke-dashoffset: 56px;
    animation: line-anim 2s ease forwards 3.0s;
} 
#logo path:nth-child(11){
    stroke-dasharray: 315px;
    stroke-dashoffset: 315px;
    animation: line-anim 2s ease forwards 3.3s;
} 
#logo path:nth-child(12){
    stroke-dasharray: 468px;
    stroke-dashoffset: 468px;
    animation: line-anim 2s ease forwards 3.6s;
} 

@keyframes line-anim{
    to{
        stroke-dashoffset: 0;

    }
}

@keyframes fill{
    from{
        fill: transparent;
    }
    to{
        fill: white;
    } 
}



    .container {
    width: 800px;
    height: 500px;
    margin:  auto;
    background: #01b388;
    border-radius: 3px;
    border: 1px solid #01b388;
    text-align: center;
    visibility: false;
}

    .container h2 {
    color: #fff;
    font-size: 30px;
    font-family: tahoma;
    padding: 50px 0 20px;
    font-weight: normal
}

    .container .content {
    width: 100%;
    background: #01b388;
}

    .container .content > div {
    display: inline-block;
    margin: 100px 10px 0;
    width: 120px;
    height: 150px;
    background: #000;
    border-radius: 5px;
    color: #fff;
    line-height: 150px;
    font-family: tahoma;
    font-size: 55px;
}

    .container .title {
    width: 140px;
    height: 50px;
    background: #01b388;
    position: relative
}

    .container .title span {
    display: inline-block;
    width: 140px;
    font-size: 20px;
    font-family: tahoma;
    color: #fff;
    line-height: 50px;

}


