body {
    font-family: "Poppins", sans-serif;
    background-color: #fdfcfb;
}

.font-cursive {
    font-family: "Great Vibes", cursive;
}

/* Animasi sederhana */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar untuk kotak ucapan */
.wishes-container::-webkit-scrollbar {
    width: 6px;
}

.wishes-container::-webkit-scrollbar-thumb {
    background-color: #889e81;
    border-radius: 10px;
}
