* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffeef8;
    text-align: center;
    padding-top: 50px;
}

#game-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#score {
    font-size: 24px;
    margin-bottom: 20px;
}

#heart-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.heart {
    position: absolute;
    background-image: url('heart.png'); /* Път към сърцето */
    background-size: cover;
    cursor: pointer;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -50px;
        opacity: 1;
    }
    100% {
        top: 400px;
        opacity: 0;
    }
}

#mute-btn {
    position: fixed;
    bottom: 20px; /* Разстояние от долния ръб на екрана */
    right: 20px; /* Разстояние от десния ръб на екрана */
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 100; /* За да се уверим, че бутонът е върху всички други елементи */
}

#mute-icon {
    width: 40px; /* Размер на иконката */
    height: 40px; /* Размер на иконката */
}


#heart-lives {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
}

.heart-life {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
