/*css*/

@keyframes loding{
    
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

@-o-keyframes loding{
    
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

@-ms-keyframes loding{
    
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

@-moz-keyframes loding{
    
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

@-webkit-keyframes loding{
    
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

#container{
    width: 100%;
    height: 100%;
    background-color: black;
}

#background,#background img{
    width: 100%;
    height: 100%;
}

#background img{
    opacity: 0.3;
}

#content-1{
    width: 500px;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    
    opacity: 1;
    
    animation:loding 2.5s ease-in-out;
    -o-animation:loding 2.5s ease-in-out;
    -ms-animation:loding 2.5s ease-in-out;
    -moz-animation:loding 2.5s ease-in-out;
    -webkit-animation:loding 2.5s ease-in-out;
}

#content-1 nav{
    width: 100px;
    height: 30px;
    background-color: orange;
    position: relative;
    left: 200px;
    top: 50px;
    
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#content-1 nav:hover{
    background-color: black;
}

#content-1 nav:hover a{
    color: orange;
}

#content-1 nav a{
    font-family: Arial;
    font-size: 15px;
    text-decoration: none;
    color: black;
    display: inline-block;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#content-1 .message{
    width: 200px;
    height: 70px;
    position: relative;
    left: 150px;
    top: 50px;
    cursor: default;
    
    font-family: Arial;
    font-size: 50px;
    color: white;
    display: inline-block;
    text-align: center;
    line-height: 70px;
}

#content-1 .space{
    width: 0;
    height: 0px;
    position: relative;
    top: 55px;
    left: 150px;
    border-top: 1px solid gray;
    
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#content-1 .message:hover+.space{
    width: 200px;
}

#content-2{
    width: 600px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    opacity: 0;
}

#content-2 .cell{
    width: 80px;
    height: 80px;
    display: inline-block;
    margin: 10px;
    position: relative;
    left: 0;
}

#content-2 .cell img{
    width: 80px;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    
    -webkit-transition: transform 0.6s ease-in-out ;
    -moz-transition: transform 0.6s ease-in-out ;
    transition: transform 0.6s ease-in-out ;
}

#content-2 .cell img:hover{
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#content-2 .cell .mes{
    width: 400px;
    height: 200px;
    font-size: 16px;
    font-family: Arial;
    color: #fff;
    text-align: left;
    position: absolute;
    left: 100px;
    top: -50px;
    opacity: 0;
}

#content-2 .cell .mes dl{
    height: 200px;
    width: 300px;
    position: relative;
    left: 50px;
}

#content-2 .cell .mes dl a{
    font-size: 13px;
    text-decoration: none;
    color: #B8B8B8;
}

#content-2 .cell .mes dl dt,#content-2 .cell .mes dl,dd{
    cursor: default;
}