Money Site
Money Site
$0
body {
font-family: Arial, sans-serif;
text-align: center;
background: linear-gradient(to right, #ff9a9e, #fad0c4);
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.balance-box {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
#balance {
font-size: 24px;
font-weight: bold;
}
.withdraw-btn {
background: red;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.earn-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.earn-btn {
background: #007bff;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
.earn-btn:hover {
background: #0056b3;
}
let balance = 0;
function earnMoney(amount) {
balance += amount;
document.getElementById("balance").textContent = `$${balance.toFixed(2)}`;
}
Comments
Post a Comment