.page-wrapper {
    background-color: #57B9D1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4rem;
    color: white;
    font-weight: bold;
    margin-bottom: 3rem;
}
h2 {
    font-size: 1.5rem;
    margin-top: .5rem;
}
.container-container {
    display: flex;
    gap: 3rem;
}
.tbd {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    width: 500px;
    height: 500px;
    border: hsla(0, 0%, 100%, .6) solid 2px;
    border-top-width: 0;
    border-radius: 0 0 1rem 1rem;
    background-color: hsla(0, 0%, 0%, 0.15);
    position: relative;
}
.grey {
    width: 500px;
    height: 125px;
    background-color: #57B9D1;
}
.ball {
    width: 100px;
    height: 100px;
    background-color: #EC6436;
    border-radius: 50%;

    margin: auto;
}
.container-container > div:nth-of-type(2) .ball {
    position: absolute;
}


.bounceY {
    animation: bounceY .6s ease-out infinite alternate;
}

@keyframes bounceY {
    0% {
        transform: translateY(275%);
    }
    100% {
        transform: translateY(-300%);
    }
    /* 100% {
        transform: translateY(275%);
    } */
}

.bounceXY {
    animation:
        left-right 4.1s linear infinite,
        bounceY .63s ease-out infinite alternate;
}

/* .bounceXY {
    animation:
        left-right 3s .75s linear infinite,
        bounceY .5s ease-out infinite alternate;
} */

@keyframes left-right {
    0% {
        left: 0;
    }
    50% {
        left: calc(100% - 100px);
    }
    100%{
        left: 0;
    }
}

/* @keyframes bounceXY {
    0% {
        transform: translate(100%, -300%);
    }
    12.5% {
        transform: translate(200%, -50%);
    }
    25% {
        transform: translate(100%, 275%);
    }
    37.5% {
        transform: translate(0, -300%);
    }
    50% {
        transform: translate(-100%, 275%);
    }
    62.5% {
        transform: translate(-200%, -50%);
    }
    75% {
        transform: translate(-100%, -300%);
    }
    87.5% {
        transform: translate(0, 275%);
    }
    100% {
        transform: translate(100%, -300%);
    }
} */