/* Body Font */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}


/* Headings Font */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    /* font-family: "Poppins", sans-serif; */
}

.pulse-btn {
    position: relative;
    animation: pulseGlow 1s infinite;
}


/* Pulse Animation */

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 166, 138, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(227, 166, 138, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 166, 138, 0);
    }
}

.outline-text {
    text-shadow: 1px 1px 4px rgba(60, 60, 60, 0.531);
    font-family: "Playfair Display", serif;
}