body{
    min-width: 100vw;
    z-index: 10;
}

.bounce-2 {
    animation-name: bounce-4;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}
@keyframes bounce-4 {
    0%   { transform: scale(1,1)    translateY(0); }
    10%  { transform: scale(1.1,.9) translateY(0); }
    30%  { transform: scale(.9,1.1) translateY(-100px); }
    50%  { transform: scale(1,1)    translateY(0); }
    100% { transform: scale(1,1)    translateY(0); }
}


.alpha{
    width: 720px;
    object-fit: fill;
    /* min-height: vw; */
    margin: 1.75rem;
}