*{
    margin: 0;
    padding: 0;

}
html, body{
    height: 100%;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ADD8E6;
    color:rgb(86, 83, 83);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: none;

}
.score{
    font-size: 4em;
}  
.board{
    height: 600px;
    width: 600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 80px;

} 
.hole{
    background-color: rgb(238, 126, 126);
    border-radius: 50%;
    box-shadow: inset 0 10px 0 7px rgb(117, 74, 55),
                inset 0 20px 20px 15px rgba(0, 0, 0, .3),
                0 0 5px rgba(0, 0, 0, .5);
    position: relative;
    overflow: hidden;
}
.hole .cat {
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    animation: rise .3s ease-out;
}

@keyframes rise {
    0%{
        transform: translateX(-50%) translateY(100%)
    }
    100%{
        transform: translateX(-50%) translateY(0%)
    }
}

.cursor{
    height: 150px;
    width: 100px;
    position: absolute;
    top: 100px;
    left: 100px;
    background-image: url('assets/mao.png');
    background-size: 100% 100%;
    transform: translate(-40%, -40%);
    transition: tranform .1s;
    pointer-events: none;
}

.cursor.active{
    transform: translate(-40%, -40%) rotate(-45deg);
}