@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

body {
    text-align: center;
    font-family: 'Jersey 10', cursive;
    background-color: #000000;
    color: #ff00f2;
    margin: 0;
    padding: 0;
}

h1, h2, p, h3 {
    margin: 10px;
}

.hearts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.heart {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.beat {
    transform: scale(1.1);
}

.label {
    font-size: 14px;
    margin-top: 5px;
}

.heart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.frame {
    width: 220px;
    height: 220px;
    border: 10px solid #6f00ff;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heart-wrapper {
    position: relative;
    display: inline-block;
}

.number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}
.snowflake {
    position: fixed;
    top: -10px;
    width: 6px;
    height: 6px;
    background: #7700ff;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0.2;
    }
}