*{
    box-sizing: border-box;
    margin: 0;
    color:white;
}
body{
    background-color: black;
    /* background-image: url("a.png"); */
}
.container{
    width: 100%;
    height: 100%;
}
.container img{
    transition: all 3s;
    animation: abc 2s infinite;
    /* animation-duration: 0.2s; */
    
}
.console{
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 999;
    cursor: pointer;
}
.patreon{
    position: fixed;
    bottom: 0;
    right: 5px;
    z-index: 997;
    cursor: pointer;
    width: 95px;
}
.patreon img{
    width: 100%;
}

@keyframes abc{
0%{
    transform: translateY(0);
}

50%{
    transform: translateY(200PX) scaleX(3.2);
   
}

100%{
    transform: translateY(0);
}
}


@media screen and (max-width: 768px) {
    .console{
        top: 10px;
    }
}