body {
    margin: 0;
    font-family: raleway,century gothic,texgyreadventor,sans-serif;
}

div {
    box-sizing: border-box;
}

.box {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    margin: 0;
}
.title{
    width: 100%;
    height: 30%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.title span{
    font-size: 60px;
    position: relative;
    color: #FFFFFFA5;
    font-weight: bold;
    letter-spacing: 6px;
}

.menu{
    color: #FFFFFF;
    padding-top: 50px;
}
.menu div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}
.menu h4{
    font-weight: normal;
    margin: 0 auto;
    padding: 5px 7px 10px 7px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    letter-spacing: 1px;
}
.menu i{
    margin-left: 5px;
}
.menu a{
	color: #fff;
	text-decoration: none;
}
.text-loading::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #FFF;
    width: 100%;
    height: 100%;
    border-right:1px solid #FFF;
    overflow: hidden;
    animation: text-loading-animate 6s linear infinite;
}
@keyframes text-loading-animate {
    0%, 10%, 100%{
        width: 0;
    }
    70%{
        width: 100%;
    }
}

.power{
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.print-box{
    color: #f8f8f8;
    display: flex;
}
.print-text{
    margin-left: 10px;
    font-family: raleway,century gothic,texgyreadventor,sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink .7s infinite;
    -moz-animation: blink .7s infinite;
    animation: blink .7s infinite;
    margin-right: 10px;
}


@keyframes blink {
    0% { opacity: 1}
    50% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes blink {
    0% {opacity: 1}
    50% {opacity: 0}
    100% {opacity: 1}
}

@-moz-keyframes blink {
    0% {opacity: 1}
    50% {opacity: 0}
    100% {opacity: 1}
}

.bottom {
    text-align: center;
    padding-bottom: 5px;
    font-size: 12px;
    color: #FFFFFFD5;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.bottom a{
    color: #FFFFFFD5;
}
.bottom div{
    display: inline-block;
    height: 24px;
    line-height: 24px;
}


/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.hvr-icon-wobble-horizontal {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover .hvr-icon, .hvr-icon-wobble-horizontal:focus .hvr-icon, .hvr-icon-wobble-horizontal:active .hvr-icon {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
/* Underline From Left */
.hvr-underline-from-left {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}
.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #FFF;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
    right: 0;
}
