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

@-webkit-keyframes fadeIn{
    0%{opacity: 0; top: 25px;}
    100%{opacity: 1; top: 0;}
}

@-webkit-keyframes fadeOut{
    0%{opacity: 1; top: 0;}
    100%{opacity: 0; top: -25px;}
}

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

@-webkit-keyframes BGfadeOut{
    0%{display: block;}
    100%{display: none;}
}

#load_screen{
    position: fixed;
    width: 100%;
    height: 1600px;
    background-color: #999;
    z-index: 999;
}

div#load_screen > div#loading{
    color: #000;
    width: 120px;
    height: 24px;
    margin: 300 auto;
}

.bg1{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -998;
    width: 100%;
    height: 100%;
    opacity: 1;
}

#container{
    position: absolute;
    width: 100%;
    height: 500px;
    top: 50%;
    margin-top: -250px;
    left: 0;
    opacity: 0;
    -webkit-animation: BGfadeIn 1s;
    -webkit-animation-fill-mode: forwards;
    animation: BGfadeIn 1s;
    animation-fill-mode: forwards;
}
.visible{
    opacity: 0;
    -webkit-animation: BGfadeIn 0.5s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay:1.2s;
    animation: fadeIn 0.5s;
    animation-delay:1.2s;
    animation-fill-mode: forwards;
}

.hidden{
    position: relative;
    -webkit-animation: fadeOut 0.3s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay:0.5s;
    animation: fadeOut 0.3s;
    animation-delay:0.5s;
    animation-fill-mode: forwards;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

#quote_container{
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: auto;
}


#quote_circle{
    position: relative;
    width: 25px;
    height: 25px;
    margin-bottom: 0;
    left: -40px;
    border: #fff solid 2px;
    border-radius: 50%;
}
#quote_circle p{
    position: absolute;
    font-size: 1.5em;
    font-family: "Expo Serif Pro";
    color: #fff;
    top: -21;
    left: 8;
}

#quote{
    position: relative;
    width: 350px;
    margin: 0 auto;
}
.quote{
    display: block;
    width: 100%;
    line-height: 220%;
    font-family: serif;
    font-style: italic;
    font-family: 'Expo Serif Pro';
    font-size: 1.3em;
    color: #fff;
}

.line1, .line2, .line3, .line4, .line5{
    position: relative;
    opacity: 0;
    width: 100%;
    -webkit-animation: fadeIn 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation: fadeIn 0.3s;
    animation-delay:0.5s;
    animation-fill-mode: forwards;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.line1_p, .line2_p, .line3_p, .line4_p, .line5_p{
    position: relative;
    padding: 0px 10px 7px;
    height: 35px;
    background-color: #083f2d;
    
}
.line1_p{width: 305px;}.line2_p{width: 335px;}.line3_p{width: 300px;}.line4_p{width: 330px;}.line5_p{width: 150px;}

 .line2, .line3, .line4, .line5{margin-top: -10;}

.line1{-webkit-animation-delay:1.5s;}.line2{-webkit-animation-delay:1.6s;}.line3{-webkit-animation-delay:1.7s;}.line4{-webkit-animation-delay:1.8s;}.line5{-webkit-animation-delay:1.9s;}


.line1_on, .line2_on, .line3_on, .line4_on, .line5_on{
    margin-top: -10px;
    top: 0;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-animation: fadeOut 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation: fadeOut 0.3s;
    animation-delay:0.5s;
    animation-fill-mode: forwards;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.line1_on{-webkit-animation-delay:0s;}.line2_on{-webkit-animation-delay:0.1s;}.line3_on{-webkit-animation-delay:0.2s;}.line4_on{-webkit-animation-delay:0.3s;}.line5_on{-webkit-animation-delay:0.4s;}

#quote_info{
    position: relative;
    width: 100%;
    font-family: monospace;
    font-size: 1em;
    margin-top: 30px;
    margin-bottom: 0;
    padding-left: 0px;
    color: #fff;
}

#enter{
    opacity: 0;
    position: relative;
    margin-top: 50px;
    height: 50px;
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    float: left;
    z-index: 1000;
}

.enter_container{
    width: 350px;
    margin: 0 auto 0;
    padding-top: 15px;
    overflow: auto;
    cursor: pointer;
    color: #fff;
}

.enter_container:hover .plus{
    -webkit-transform: rotate(90deg);
    opacity: 0.5;
}
.enter_container:hover .enter_type{
    opacity: 0.5;
}

.plus{
    font-family: sans-serif;
    font-size: 2.5em;
    float: left;
    margin-top: -15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.enter_type{
    height: 25px;
    font-family:monospace;
    font-size: 1/3em;
    float: left;
    margin-left: 10px;
     -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
