* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
body {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000000;
}
.container {
    position: relative;
    width: 1920px;
    height: 960px;
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    background: url(../images/bg.jpg) no-repeat;
    margin: 0 auto;
}
.video-box {
    position: absolute;
    display: block;
    width: 890px;
    height: 503px;
    z-index: 1;
    top: 87px;
    left: 672px;
    background: url(../images/video-bg.png) no-repeat;
    transform: rotate(-14deg);
    background-size: 100%;
    background-position: 42px 11px;
}
video {
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    top: 5px;
    left: 30px;
    border: 6px solid;
    background-color: #000;
}
.logo {
    position: absolute;
    display: block;
    width: 297px;
    height: 203px;
    z-index: 2;
    top: 18px;
    left: 38px;
    background: url(../images/logo.png) no-repeat;
}
.text-01 {
    position: absolute;
    display: block;
    width: 688px;
    height: 427px;
    z-index: 2;
    top: 213px;
    left: 0px;
    background: url(../images/text-01.png) no-repeat;
    transform: translateX(-50px);
    animation: slideIn 5s ease infinite;
    opacity: 0;
}
.text-02 {
    position: absolute;
    display: block;
    width: 570px;
    height: 251px;
    z-index: 2;
    top: 502px;
    left: 0px;
    background: url(../images/text-02.png) no-repeat;
    transform: translateX(-50px);
    animation: slideIn 5s ease infinite;
    animation-delay: 0.2s;
    opacity: 0;
}
.luffy {
    position: absolute;
    display: block;
    width: 805px;
    height: 847px;
    z-index: 2;
    bottom: -44px;
    right: -20px;
    background: url(../images/luffy.png) no-repeat;
    animation: mover_2 0.35s infinite alternate;
    background-size: 103%;
}
.link-download-client {
    position: absolute;
    display: block;
    width: 429px;
    height: 200px;
    z-index: 2;
    top: 620px;
    left: 269px;
    background: url(../images/btn-download.png) no-repeat;
    transform: translateX(-5px);
    animation: mover_1 0.35s infinite alternate ease-in-out;
}
.link-download-client:hover {
    filter: brightness(.8);
}

.zoomeffect {
    -webkit-animation: zoomeffect 1.8s infinite;
    -moz-animation: zoomeffect 1.8s infinite;
    animation: zoomeffect 1.8s infinite;
}
@-webkit-keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(0.9, 0.9);
    }
    50% {
        background-position: center;
        transform: scale(1, 1);
    }
    100% {
        background-position: center;
        transform: scale(0.9, 0.9);
    }
}
@keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(0.9, 0.9);
    }
    50% {
        background-position: center;
        transform: scale(1, 1);
    }
    100% {
        background-position: center;
        transform: scale(0.9, 0.9);
    }
}
@keyframes slideIn {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    3% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes mover_1 {
    0% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}
@keyframes mover_2 {
    0% {
        transform: translate(-15px, -40px);
    }

    100% {
        transform: translate(0);
    }
}
@media screen and (max-width: 1900px) {
    .container {
        width: 100%;
        height: 100%;
    }
}
@media screen and (min-width: 1921px) {
    @keyframes mover_2 {
        0% {
            transform: translate(-15px, -10px);
        }

        100% {
            transform: translate(0);
        }
    }
}