#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mythical-rarity-text {
    font-size: 1em;
    font-weight: normal;
    font-family: inherit;
    background: linear-gradient(to right, #54478c, #2c699a, #048ba8, #0db39e, #16db93, #83e377, #b9e769, #efea5a, #f1c453, #f29e4c, #54478c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 2s linear infinite;
}

.chest-image {
    width: 200px;
    cursor: pointer;
    transition: transform 0.1s;
    margin: 15px;
}

.chest-image:active {
    transform: scale(0.95);
}

#timer {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

#result {
    text-align: center;
}

@keyframes rainbow {
    to {
        background-position: -200% center;
    }
}
