body{
    height: 100vh;
    width: 100vw;
    background-color: rgb(8, 8, 59);
    display: flex;
    padding: 0;
    margin: 0;
    overflow: hidden;
    user-select: none;
}
*{
    user-select: none;}
.left{
    height: 100%;
    width: 35%;
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: end;
}
#counter{
    font-size: 50px;
    color: white;
    position: absolute 0, 0;
}
.middle{
    height: 100%;
    width: 50%;
    background-color: rgb(18, 1, 94);
    display: flex;
    justify-content: center;
    align-items: center;
}
.right{
    height: 100%;
    width: 20%;
    background-color: rgb(10, 5, 32);
    display: flex;
    justify-content: center;
    align-items: center;
}
.title{
    font-size: 4rem;
    color: white;
}
button{
    height: 50px;
    width: 250px;
    background-color: rgb(4, 4, 65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}
#cookie{
    height: 300px;
    width: 300px;
    margin: 30px;
    padding: 30px;
}
#cookie:active{
    animation: pulse .2s ease 0s 1 normal forwards;
}
@keyframes pulse{
    0% {
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}
.pulse{
    animation: pulse 0.5s ease-in-out
}


.upgrade{
    white-space: pre;
}