html,
body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    overflow: hidden;
    background-color: teal;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 40%;
    margin-left: 51%;
    color: yellow;
}

.kity {
    width: 10%;
    height: 10%;
    margin: 0;
    position: absolute;
    opacity: 0;
}

.music-player {
    position: absolute;
    width: 100%;
    max-width: 200px;
    margin: 2rem auto;
    top: 70%;
    left: 7%;
}

.music-player iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.music-player iframe.bounce,
h1.bounce,
img.bounce {
    display: inline-block;
    animation: bounce 0.888888s infinite;
    transform-origin: bottom center;
}

@keyframes bounce {
    
    0%,
    100% {
        transform: scaleY(0.60) scaleX(1.4);
    }

    50% {
        transform: scaleY(1.4) scaleX(0.60);
    }
}