/*background colors*/

.bg-primary {
    background-color: #1C1B1A;
}

.bg-secondary {
    background-color: #F3F3F2;
}

.bg-tertiary {
    background-color: #8b8782;
}
/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #F48C06;
}
.text-yellow-500 {
    color: #F48C06;
}
.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;
}

.text-primary {
    color: #1C1B1A;
}

.text-secondary {
    color: #F3F3F2;
}

.text-tertiary {
    color: #8b8782;
}