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

/*font*/
body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}
html, body {
    height: 100%;
}

footer {
    margin-bottom: 0;
    padding-bottom: 0;
    clear: both;
    flex-shrink: 0;
}
.container {
    margin-bottom: 0;
    padding-bottom: 0;
    flex: 1 0 auto;
}

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