.doliDanaContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.diceWrapper {
    animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.diceWrapper:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}