.container {
    text-align: center;
    width: 50%;
    margin: 0% auto 0;
    background: rgba(255, 255, 255, .7);
    padding: 6% 14%;
    border-radius: 70px;
    box-shadow: 0 0 120px 0 #FFD1D8;
    background-image: url(./img/22_open.4ea5f239.png),url(./img/33_open.f7d7f655.png);
    background-position: 0 100%,100% 100%;
    background-repeat: no-repeat,no-repeat;
    background-size: 15%;
}

a {
    color: aqua;
}
.bounce {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #ff337dcf;
    height: 100%;
    font: normal bold 6rem "Product Sans", sans-serif;
    white-space: nowrap;
}
.nav-item{
    text-align: center;
}
.letter {
    animation: bounce 0.75s cubic-bezier(0.05, 0, 0.2, 1) infinite alternate;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    margin-top: 0.5em;
    text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
    font: normal 500 3rem 'Varela Round', sans-serif;
}
.letter:nth-child(1) {
    animation-delay: 0s;
}
.letter:nth-child(2) {
    animation-delay: 0.0333333333s;
}
.letter:nth-child(3) {
    animation-delay: 0.1333333333s;
}
.letter:nth-child(4) {
    animation-delay: 0.2333333333s;
}
.letter:nth-child(5) {
    animation-delay: 0.3333333333s;
}
.letter:nth-child(6) {
    animation-delay: 0.4333333333s;
}
.letter:nth-child(7) {
    animation-delay: 0.5333333333s;
}
.letter:nth-child(8) {
    animation-delay: 0.6333333333s;
}
.letter:nth-child(9) {
    animation-delay: 0.7333333333s;
}
.letter:nth-child(10) {
    animation-delay: 0.8333333333s;
}
.letter:nth-child(11) {
    animation-delay: 0.9333333333s;
}

*{
    margin:0;
    padding:0;
}
html{
    height:100%;
}
body{
    background:#F1FDFE;
    height:100%;
}
.mom{
    width:100%;
    height:80px;
    text-align:center;
    font-size:33px;
    border-width:5px;
    border-style:dashed;
    border-color:rgb(200, 0, 255);
    background:#e6fafd;
    color:rgb(255, 0, 55);
}


@keyframes bounce {
    0% {
        transform: translate3d(0, 0, 0);
        text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
    }
    100% {
        transform: translate3d(0, -1em, 0);
        text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em;
    }
}