/* styles.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.counter-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 300px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.heart-counter,
.money-counter {
    font-size: 2em;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.money-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.money-buttons div {
    display: flex;
    justify-content: space-around;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

h1 {
    color: darkblue;
}

.money-buttons img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s;
}

.money-buttons img:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .money-buttons img {
        width: 60px;
        height: 60px;
    }
}
