body {
    font-family: sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
    font-size: 2em;
}

.game-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.cookie-container {
    position: relative;
}

#cookie {
    width: 150px;
    transition: transform 0.2s ease;
    cursor: pointer;
}


.upgrades {
    margin-top: 20px;
}

.upgrade {
    background: #222;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
}



