* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#game {
    width: 300px;
    height: 500px;
    border: 2px solid black;
    margin: auto;
    position: relative;
    top: 70px;
    background-image: linear-gradient(to bottom, #83ffc5, #6a92ff);
    overflow: hidden;
}

#player {
    width: 100px;
    height: 100px;
    background-color: rgb(0, 75, 94);
    position: absolute;
    top: 400px;
    left: 100px;
}

#block {
    width: 100px;
    height: 100px;
    background-color: rgb(82, 0, 0);
    position: absolute;
    top: -100px;
    left: 100px;
    animation: moveDown 2s linear infinite;
}

@keyframes moveDown {
    0% {
        top: -100px;
    }

    100% {
        top: 100%;
    }
}

#score {
    font-weight: bold;
    padding-top: 10px;
    text-align: center;
    font-size: larger;
    z-index: 100;
}