
/* ===================================== 포스팅 카드 꾸미기 END ===================================== */

/* ************************************* 최상단 페이드 이미지 애니메이션 ************************************* */
#imgs2::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.2s ease-in-out 0s;
}
#imgs2 .item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
#imgs2 .item:nth-child(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
#imgs2 .item:nth-child(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}
#imgs2 .item:nth-child(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}
#imgs2 .item:nth-child(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}
#imgs2 .item:nth-child(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    2% {
        opacity: 1;
    }

    8% {
        opacity: 1;
        transform: scale(1.05);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        transform: scale(1.1);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    2% {
        opacity: 1;
    }

    8% {
        opacity: 1;
        transform: scale(1.05);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        transform: scale(1.1);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}
/* ===================================== 최상단 페이드 이미지 애니메이션 END ===================================== */

/* ************************************* NOT FOUND ************************************* */
.notFound {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.notFound .eyes {
    -webkit-animation: move 2s forwards infinite;
    animation: move 2s forwards infinite;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateX(0%);
    }
    20% {
        -webkit-transform: translate(4px, -4px);
    }
    40% {
        -webkit-transform: translate(6px, -4px);
    }
    60% {
        -webkit-transform: translate(12px, 0px);
    }
    80% {
        -webkit-transform: translate(6px, 6px);
    }
    100% {
        -webkit-transform: none;
    }
}

@keyframes move {
    0% {
        transform: translateX(0%);
    }
    20% {
        transform: translate(4px, -4px);
    }
    40% {
        transform: translate(6px, -4px);
    }
    60% {
        transform: translate(12px, 0px);
    }
    80% {
        transform: translate(6px, 6px);
    }
    100% {
        transform: none;
    }
}
.notFound > div:before,
.notFound > div:after {
    content: '4';
    font-size: 200px;
}
.notFound p {
    text-align: center;
    margin-top: -40px;
    margin-left: 25px;
    font-size: 55px;
}
.notFound a {
    text-decoration: none;
    color: #6495ed;
}
.notFound a:hover {
    padding: 20px;
    background: #6495ed;
    color: black;
    border-radius: 50%;
    box-shadow: 10px 10px 5px #888888;
}
/* ===================================== NOT FOUND END ===================================== */

/* ************************************* 나비 ************************************* */
.borboletas {
    position: absolute;
    z-index: 2;
    left: 56%;
    bottom: 40%;
    -moz-animation: borboletas-pos-loop 7s ease-in-out infinite alternate-reverse;
    -webkit-animation: borboletas-pos-loop 7s ease-in-out infinite alternate-reverse;
    animation: borboletas-pos-loop 7s ease-in-out infinite alternate-reverse;
}
@keyframes borboletas-pos-loop {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 0);
    }
    50% {
        transform: translate(30px, -70px);
    }
    75% {
        transform: translate(00px, 20px);
    }
    100% {
        transform: translate(-100px, -50px);
    }
}
.borboleta-1 {
    -moz-animation: borboleta-radial-loop 10s linear infinite;
    -webkit-animation: borboleta-radial-loop 10s linear infinite;
    animation: borboleta-radial-loop 10s linear infinite;
}
@keyframes borboleta-radial-loop {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.borboleta-oval-squish {
    -moz-transform: scale(0.3, 1);
    -ms-transform: scale(0.3, 1);
    -webkit-transform: scale(0.3, 1);
    transform: scale(0.3, 1);
}
.borboleta-oval {
    position: absolute;
    -moz-animation: borboleta-radial-loop 1.2s linear infinite;
    -webkit-animation: borboleta-radial-loop 1.2s linear infinite;
    animation: borboleta-radial-loop 1.2s linear infinite;
}
.borboleta-2 .borboleta-oval {
    -moz-animation: borboleta-radial-loop 1.5s linear infinite;
    -webkit-animation: borboleta-radial-loop 1.5s linear infinite;
    animation: borboleta-radial-loop 1.5s linear infinite;
}
.borboleta-radial {
    position: absolute;
    left: 80px;
    top: 0;
    -moz-animation: borboleta-oval-loop 1.2s linear infinite;
    -webkit-animation: borboleta-oval-loop 1.2s linear infinite;
    animation: borboleta-oval-loop 1.2s linear infinite;
}
.borboleta-2 .borboleta-radial {
    -moz-animation: borboleta-oval-loop 1.5s linear infinite;
    -webkit-animation: borboleta-oval-loop 1.5s linear infinite;
    animation: borboleta-oval-loop 1.5s linear infinite;
}
@keyframes borboleta-oval-loop {
    0% {
        transform: rotate(0) scale(3.3, 1);
    }
    100% {
        transform: rotate(-360deg) scale(3.3, 1);
    }
}
.borboleta-gfx {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 20px;
}
.borboleta-1 .borboleta-gfx {
    -moz-animation: borboleta-gfx-upright-loop 10s linear infinite;
    -webkit-animation: borboleta-gfx-upright-loop 10s linear infinite;
    animation: borboleta-gfx-upright-loop 10s linear infinite;
}
.borboleta-2 .borboleta-gfx {
    -moz-animation: borboleta-gfx-upright-loop 15s linear infinite;
    -webkit-animation: borboleta-gfx-upright-loop 15s linear infinite;
    animation: borboleta-gfx-upright-loop 15s linear infinite;
}
@keyframes borboleta-gfx-upright-loop {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.borboleta-anim {
    background: radial-gradient(closest-side at 50% 50%, #ffffff 50%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(closest-side at 50% 50%, #ffffff 50%, rgba(255, 255, 255, 0) 50%);
    background-repeat: no-repeat;
    background-size: 90% 70%, 100% 70%;
    background-position: 20% -40%, 0 40%;
    width: 25px;
    height: 20px;
    -moz-animation: borboleta-anim-loop 150ms ease-in-out infinite alternate-reverse;
    -webkit-animation: borboleta-anim-loop 150ms ease-in-out infinite alternate-reverse;
    animation: borboleta-anim-loop 150ms ease-in-out infinite alternate-reverse;
}
@keyframes borboleta-anim-loop {
    0% {
        transform: scale(1, 1.2) rotate(40deg);
    }
    100% {
        transform: scale(0.7, -1) rotate(-40deg);
    }
}
/* ===================================== 나비 END ===================================== */

