body {
    font-family: Arial;
    text-align: center;
    background: #c5b592;
    padding-top: 40px;
}

#cookieclick {
    width: 180px;
    transition: filter 0.2s ease;
    cursor: pointer;
    filter: brightness(67%);
}

#cookieclick:hover {
    transform: scale(1.1);
    filter: brightness(100%);
}

#cookieclick:active {
    transform: scale(0.9);
}

#score {
    font-size: 35px;
    margin-top: 20px;
    color: red;
}

#bonusmessage {
    margin-top: 15px;
    font-size: 20px;
    height: 25px;
    color: white;
    font-weight: bold;
}

#resetbutton {
    margin-top: 30px;
    padding: 10px 25px;
    background: #ad1717;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

#resetbutton:hover {
    background: #ff0101;
}