body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    padding: 50px;
}

h1 {
    color: #333;
}

.name {
    font-size: 2em;
    margin: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.name:hover {
    transform: scale(1.1);
}

.counter {
    font-size: 1.5em;
    margin: 10px;
}

.animation {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
}

.heart {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../public/img/heart.png') no-repeat center center;
    background-size: contain;
    animation: float 5s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}

.stop-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.stop-button:hover {
    background-color: #ff1a1a;
}