.dropgame {
    display:flex;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    border-radius: 24px;
    overflow: hidden;
}
.dropgame::before{
    position:absolute;
    filter: brightness(0.5);
    background-image: url("../media/background.jpeg");
    background-size: 64px 64px;
    background-repeat:round;
    width: 100%;
    height: 100%;
    content: "";
}
.dropgame::after{
    position:absolute;
    background-size: 64px 64px;
    background-repeat: repeat-x;
    background-size: 64px 64px;
    top: 90%;
    width: 100%;
    height: 90%;
    background-image: url("../media/plataform.jpeg");
    content: "";
}
.leavebtn {
    top: 1%;
    left:1%;
    background-color: rgb(80, 77, 77);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: none;
    border: none;
}
.leavebtn::before{
    top: 0%;
    left:0%;
    content: "\23F8";
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
}
#pointsCounter {
    padding: 2%;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    position: absolute;
    top:5%;
    left: 1%;
}
.dogecharac{
    position: absolute;
    top:90%;
    width: 76px;
    height: 76px;
    background-repeat: no-repeat;
    background-size: 76px 76px;
    background-image: url("../media/dropgamedoge.png");
    transform: translateY(-100%);
    transform-origin: top;
    opacity: 0.9;
    image-rendering: pixelated;
}
.dropfood {
    box-sizing: border-box;
    width: 14%;
    aspect-ratio: 1/1;
    z-index: 5;
    position: absolute;
    animation: fall 2.5s linear forwards;
}
.dropfood.paused {
    animation-play-state: paused;
}
.dropfood img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: dropping 1s infinite linear;
}
@keyframes dropping {
    from{
        rotate: 0deg;
    }
    to{ 
        rotate: 360deg;
    }
}
@keyframes fall {
    from{top:0%;}
    to {
        top: 100%;
    }
}