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

.bg-black {
    background-color: #000000;
}

/*font*/
body {
    font-family: "Epilogue", serif;
    font-optical-sizing: auto;
    font-style: normal;
    /*letter-spacing: 0.2em;*/
}

.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;
}


.exchange-icons-grid img {
    display: block;
    margin: 0 auto;
    max-width: 90px;   /* Adjust as needed */
    max-height: 36px;  /* Adjust as needed */
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 8px 0;
    transition: opacity 0.3s;
    opacity: 0.7;
}
.exchange-icons-grid img:hover {
    opacity: 1;
}
.exchange-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 24px 16px;
    align-items: center;
    justify-items: center;
    width: 100%;
}
