
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #ffe4e1, #f8f8ff);
    color: #333;
    text-align: center;
    overflow-x: hidden;
}

.container {
    padding: 30px;
}

h1, h2 {
    font-family: 'Brush Script MT', cursive;
    color: #b30059;
}

p {
    font-size: 1.2em;
    margin: 20px auto;
    max-width: 600px;
}

.gallery img {
    width: 45%;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.fade-in {
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 0;
}

.heart {
    width: 20px;
    height: 20px;
    position: absolute;
    background: red;
    transform: rotate(45deg);
    animation: fall 5s linear infinite;
    opacity: 0.7;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
}

.heart::before {
    top: -10px;
    left: 0;
}

.heart::after {
    left: -10px;
    top: 0;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}
