@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Baloo+2&display=swap');
@import url("navigation.css");
@import url("menu.css");

@font-face {
    font-family: 'JF';
    src: url('./jf-openhuninn-1.0.woff') format("woff");
}
   
body{
    overflow: hidden;
    font-family: 'JF';
    margin: 0;
}

.page{
    position: relative;
    margin: auto;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    min-width: 1000px;
    background: url(../images/g5.png) rgb(255, 252, 239);
    background-size: contain;
}

#page1{
    background: url(../images/c_3.png) no-repeat;
    background-size: cover;
}

.hello{
    position: absolute;
    bottom: -30%;
    margin: auto;
    text-align: center;
    width: 100%;

    animation-name: ant;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-delay: 0.5s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: ant;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 0.5s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes ant{
	from{
		bottom: -30%;
		opacity: 0;
	}
	
	to{
		bottom: 40%;
		opacity: 1;
	}
	/* 也可以用 % 來表示 */
}

.dec0{
    position: relative;
    display: inline-block;
    margin: auto;
    width: 15px;
    background: rgba(147, 218, 251,0.8);
    height: 15px;
    vertical-align: middle;
    border-radius: 50%;
}
.dec1{
    position: relative;
    display: inline-block;
    margin: auto;
    width: 30px;
    background: rgba(147, 218, 251,0.8);
    height: 30px;
    border-radius: 50%;
}

.dec2{
    position: relative;
    display: inline-block;
    margin: auto;
    width: 50px;
    height: 50px;
    background: rgba(147, 218, 251,0.8);
    border-radius: 50%;
    vertical-align: middle;
}

.sep{
    position: relative;
    display: inline-block;
    margin: auto;
    width: 30px;
    border-radius: 50%;
}

.sep2{
    position: relative;
    display: inline-block;
    margin: auto;
    width: 18px;
    border-radius: 50%;
}

#page2{
    /*background: url(../images/g.png) rgb(255, 252, 239);*/
    background-size: contain;
}

.welcome{
    position: relative;
    display: inline-block;
    margin: auto;
    background: rgba(147, 218, 251,0.8);
    font-size: 50px;
    text-align: center;
    padding: 10px;
    font-family: 'Baloo 2', cursive;
}


.figure{
    position: absolute;
    text-align: center;
    margin: 0;
    height: 400px;
    padding: 0;
    width: 27%;
    border-radius: 30px;
}

#f1{
    left: 5%;
    top: 15%;
}

#f2{
    left: 50%;
    top: 22%;
    -ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#f3{
    right: 5%;
    top: 5%;
}

.bar{
    position: absolute;
    width: 20px;
}

#b1{
    background:  rgb(0, 80, 253);
    top:0;
    left: 6.7%;
    height: 17%;
    -ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#b2{
    background:  rgb(173, 68, 68);
    top:0;
    left: 37%;
    height: 26%;
    -ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}


#b3{
    background:  rgb(252, 172, 25);
    top:0;
    right: 32%;
    height: 9%;
    -ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}


.head{
    position: relative;
    margin: auto;
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
}

#h1{
    background: url(../images/iceking.png) #B4E6F9/*#B4E6F9*/ no-repeat;
    background-size: 120%;
    background-position: 15px -50px;
    border: solid rgb(0, 80, 253) 20px;
}

#h1:hover{
    border: solid rgb(0, 80, 253) 30px;
    transition: top 0.5s, border 0.5s;
    cursor: pointer;
}

#h2{
    background: url(../images/marc.png) rgb(253, 157, 157) no-repeat;
    background-size: 100%;
    background-position: 0 10px;
    border: solid rgb(173, 68, 68) 20px;
}

#h2:hover{
    border: solid rgb(173, 68, 68) 30px;
    transition: top 0.5s, border 0.5s;
    cursor: pointer;
}

#h3{
    background: url(../images/Gunter.png) rgb(255, 220, 165) no-repeat;
    background-position: 30px 22px;
    background-size: 70%;
    border: solid rgb(252, 172, 25) 20px;
}

#h3:hover{
    border: solid rgb(252, 172, 25) 30px;
    transition: top 0.5s, border 0.5s;
    cursor: pointer;
}


.summary{
    position: relative;
    margin: auto;
    width: 200px;
    background: #e2e0cb;
    text-align: left;
    border-radius: 25px;
    border: solid rgb(94, 89, 80) 1.7px;
}

.space{
    height: 5px;
}

.name{
    margin: auto;
    position: relative;
    padding: 3px 0;
    font-size: 27px;
    width: 200px;
    background: white;
    border-radius: 5px;
}

#n1{
    background: rgb(180, 230, 249);
}

#n2{
    background: rgb(253, 157, 157);
}

#n3{
    background: rgb(255, 220, 165);
}

.intro{
    font-size: 18px;
    padding: 10px;
}

.label{
    background: #b3b1a1;
    font-size: 19px;
    padding: 0 5px;
    border-radius: 3px;
}

.left{
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 27%;
}

.right{
    position: absolute;
    top:0;
    right: 0;
    height: 100%;
    width: 73%;
}

.left_fig{
    height: 450px;
    vertical-align: middle;
    text-align: center;
}

#l1{
    background:  rgb(0, 80, 253);
}

#l2{
    background:  rgb(173, 68, 68);
}

#l3{
    background:  rgb(252, 172, 25);
}

#l1 img{
    height: 450px;
}

#l2 img{
    width: 300px;
}

#l3 img{
    width: 200px;
}

.left img{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.l_name{
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    font-size: 35px;
}

#l1 .l_name{
    background:  rgba(180, 230, 249, 0.8);
}

#l2 .l_name{
    background:  rgba(253, 157, 157, 0.8);
    
}

#l3 .l_name{
    background:  rgba(255, 220, 165, 0.8);
}


.close{
    position: absolute;
    top: 80%;
    right: 4%;
    color: rgb(250, 247, 234);
    background: rgb(94, 89, 80);
    border-radius: 10px;
    font-size: 30px;
    padding: 3px 5px;
    z-index: 100;
    display: none;

}

.close:hover{
    background: rgb(255, 252, 239);
    color: rgb(58, 33, 1);
    cursor: pointer;
}

/* right */
.right header{
    color: rgb(94, 89, 80);
    height: 100%;
    width: 0;
}



#r1 header{
    background: #B4E6F9;
}

#r2 header{
    background: rgb(253, 157, 157);
}

#r3 header{
    background: rgb(255, 220, 165);
}

.picture{
    position: absolute;
    width: 83.33vh;
    max-width: 60%;
    height: 50vh;
    top: 50%;
    left: 2%;
    border-radius: 30px;
    border: solid black;
    -ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.detail{
    position: absolute;
    top: 50%;
    right: 5%;
    padding: 5px;
    display: none;
    text-align: left;
    border-radius: 20px;
    background: rgb(255, 252, 239);
    height: 50vh;
    width: 30%;
    font-size: 20px;
    -ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.detail p{
    position: absolute;
    width: 95%;
    margin: 0;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.desp1{
    position: absolute;
    left: 5%;
    top: 17%;
    width: 34.5vh;
    height: 34.5vh;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    overflow: hidden;
}

.desp1:hover{
    cursor: pointer;
}

.desp1 .inside{
    position: absolute;
    width: 36.5vh;
    height: 50px;
    line-height: 50px;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.desp2{
    position: absolute;
    left: 50%;
    top:71%;
    width: 44vh;
    height: 44vh;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.desp2:hover{
    cursor: pointer;
}

.desp2 .inside{
    position: absolute;
    width: 46vh;
    height: 50px;
    line-height: 50px;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.desp3{
    position: absolute;
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
    right: 5%;
    top: 9%;
    text-align: center;
    font-size: 30px;
    overflow: hidden;
}

.desp3:hover{
    cursor: pointer;
}

.desp3 .inside{
    position: absolute;
    width: 42vh;
    height: 50px;
    line-height: 50px;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    -ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* Ice King */
#pic1_1{
    background: url(../images/rc1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: ik1;
	animation-duration: 9s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: ik1;
	-webkit-animation-duration: 9s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes ik1{
	0%{
		background: url(../images/rc1.png) no-repeat;
        background-size: cover;
	}
	
	33.33%{
        background: url(../images/rc2.png) no-repeat;
        background-size: cover;
    }
    
    66.66%{
        background: url(../images/rc3.png) no-repeat;
        background-size: cover;
    }

    100%{
		background: url(../images/rc1.png) no-repeat;
        background-size: cover;
	}
}

#pic1_2{
    background: url(../images/s1.png) no-repeat;
    background-size: cover;

    display: none;

    animation-name: ik2;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: ik2;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes ik2{
	0%{
		background: url(../images/s1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/s2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/s3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/s4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/s1.png) no-repeat;
        background-size: cover;
    }
}

#pic1_3{
    background: url(../images/fc1.png) no-repeat;
    background-size: cover;

    display: none;

    animation-name: ik3;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: ik3;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes ik3{
	0%{
		background: url(../images/fc1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/fc2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/fc3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/fc4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/fc1.png) no-repeat;
        background-size: cover;
    }
}


#p1_1{
    background: url(../images/rc1.png) no-repeat;
    background-size:cover;
    background-position: 50% 0;
    border: solid rgb(0, 80, 253) 20px;
}

#p1_1:hover{
    top: 23%;
    transition: top 0.5s;
}

#p1_1 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 40px;
}

#p1_2{
    background: url(../images/s.png);
    background-size: cover;
    background-position: 40% 0;
    border: solid rgb(0, 80, 253) 20px;
}

#p1_2:hover{
    top: 68%;
    transition: top 0.5s;
}

#p1_2 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 90px;
}

#p1_3{
    background: url(../images/fc.jpg);
    background-size: cover;
    background-position: 50% 0;
    border: solid rgb(0, 80, 253) 20px;
}

#p1_3:hover{
    top: 15%;
    transition: top 0.5s;
}

#p1_3 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 8px;
}


/* Marceline */
#pic2_1{
    background: url(../images/mu1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: marc1;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: marc1;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes marc1{
	0%{
		background: url(../images/mu1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/mu2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/mu3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/mu4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/mu1.png) no-repeat;
        background-size: cover;
    }
}

#pic2_2{
    background: url(../images/vp1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: marc2;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: marc2;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes marc2{
	0%{
		background: url(../images/vp1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/vp2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/vp3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/vp4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/vp1.png) no-repeat;
        background-size: cover;
    }
}

#pic2_3{
    background: url(../images/dad1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: marc3;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: marc3;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}

@keyframes marc3{
	0%{
		background: url(../images/dad1.png) no-repeat;
        background-size: cover;
	}
	
	33.33%{
        background: url(../images/dad2.png) no-repeat;
        background-size: cover;
    }

    66.66%{
        background: url(../images/dad3.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/dad1.png) no-repeat;
        background-size: cover;
    }
}

#p2_1{
    background: url(../images/mu.png) no-repeat;
    background-size: cover;
    border: solid rgb(173, 68, 68) 20px;
}

#p2_1:hover{
    top: 23%;
    transition: top 0.5s;
}

#p2_1 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 70px;
}

#p2_2{
    background: url(../images/vp3.png);
    background-size: cover;
    background-position: 40% 0;
    border: solid rgb(173, 68, 68) 20px;
}

#p2_2:hover{
    top: 68%;
    transition: top 0.5s;
}

#p2_2 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 45px;
}

#p2_3{
    background: url(../images/dad1.png) no-repeat;
    background-size: cover;
    background-position: 40% 0px;
    border: solid rgb(173, 68, 68) 20px;
}

#p2_3:hover{
    top: 15%;
    transition: top 0.5s;
}

#p2_3 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 80px;
}

/* Gunter */
#pic3_1{
    background: url(../images/ev1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: gun1;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: gun1;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes gun1{
	0%{
		background: url(../images/ev1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/ev2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/ev3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/ev4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/ev1.png) no-repeat;
        background-size: cover;
    }
}

#pic3_2{
    background: url(../images/org1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: gun2;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: gun2;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}


@keyframes gun2{
	0%{
		background: url(../images/org1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/org2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/org3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/org4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/org1.png) no-repeat;
        background-size: cover;
    }
}

#pic3_3{
    background: url(../images/egg1.png) no-repeat;
    background-size: cover;
    display: none;

    animation-name: gun3;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 1s;	/* 怕網速太慢，圖片還沒load完動畫就開始放 */
	animation-direction: normal;	/* 左到右，reverse是右到左 */
	animation-fill-mode: forwards;	/* 停在最右邊的格子，因為是normal，所以是最後一格 */
	/* 一樣的效果
	animation-direction: reverse;	
	animation-fill-mode: backwards;	
	*/

	-webkit-animation-name: gun3;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
}

@keyframes gun3{
	0%{
		background: url(../images/egg1.png) no-repeat;
        background-size: cover;
	}
	
	25%{
        background: url(../images/egg2.png) no-repeat;
        background-size: cover;
    }
    
    50%{
        background: url(../images/egg3.png) no-repeat;
        background-size: cover;
    }

    75%{
        background: url(../images/egg4.png) no-repeat;
        background-size: cover;
    }

    100%{
        background: url(../images/egg1.png) no-repeat;
        background-size: cover;
    }
}

#p3_1{
    background: url(../images/ev.png) no-repeat;
    background-size: cover;
    background-position: 60% 0;
    border: solid rgb(252, 172, 25) 20px;
}

#p3_1:hover{
    top: 23%;
    transition: top 0.5s;
}

#p3_1 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 40px;
}

#p3_2{
    background: url(../images/org1.png);
    background-size: cover;
    background-position: 60% 0px;
    border: solid rgb(252, 172, 25) 20px;
}

#p3_2:hover{
    top: 68%;
    transition: top 0.5s;
}

#p3_2 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 60px;
}

#p3_3{
    background: url(../images/egg1.png);
    background-size: cover;
    background-position: 30% 0;
    border: solid rgb(252, 172, 25) 20px;
}

#p3_3:hover{
    top: 15%;
    transition: top 0.5s;
}

#p3_3 span{
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 65px;
}

footer{
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: right;
    font-family: 'JF';
    font-size: 13px;
    z-index: 10;
}