body{
    margin: 0px;
    padding: 0px;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff9f9;
}

.cookieImage{
    width: 400px;
    height: 30%;
    margin: 0 auto;
}

.btn{
    margin: 5px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor:pointer;
}

.upgrade{
    width: 300px;
    height: 70px;
    border-radius: 10px;
    background: #ffd2d2;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.upgrades{
    margin: 10px;
}

.score{
    padding: 35px;
    border-radius: 10px;
    background: #ffd2d2;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.btn:active{
    
    animation: cookieClick 0.2s;
}

.upgradebtn{
    border:none;
    border-radius: 5px;
    background: #ffd2d2;
    outline: solid 1px black;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

@keyframes cookieClick{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}