body {
    padding: 0;
    margin: 0;
    /* font-family: "Teachers", sans-serif; */
    font-family: "Poppins", sans-serif;
}


.kt-color-a {
    color: #c8a183
}

.kt-btn-color-a {
    color: white;
    background-color: rgb(200 161 131) !important;
    border: 0;
}


.kt-animate-bounce {
    animation: bounce 2s ease;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}



.kt-fadeIn {
    animation: ktfadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes ktfadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}