/*primary color*/
.bg-cream {
    background-color: #FFF2E1;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #F48C06;
}

.text-yellow-500 {
    color: #F48C06;
}

.text-amber-50 {
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}

.text-amber-400 {
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.text-amber-100 {
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}

.bg-amber-500 {
    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}

.text-amber-600 {
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}

.bg-amber-600 {
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 8px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.floating-4 {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-4 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 8px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.text-darken {
    color: #2F327D;
}