/* 虹色 */
.gamingbtn-wrapper-1 {
    /* display: flex; */
    text-align: center;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    font-size: 30;
}

a {
    color: #747474;
    text-decoration: none;
}

.gamingbtn-1 {
    padding: 15px 40px;
    border: none;
    outline: none;
    color: #fff;
    font-family: poppins, sans-serif;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    font-size: 50;
    color: #747474;
}

.gamingbtn-1::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
}

.gamingbtn-1::before {
    content: "";
    background: linear-gradient(45deg,#ff0000, #ff9900, #ffcc00, #00ff00, #00ccff, #0000ff, #9900ff, #ff00cc); /* 赤 オレンジ 薄オレンジ 緑 水色 青 紫 ピンク */
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    border-radius: 10px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    /* アニメーション */
    animation: glowing 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* hover */
.gamingbtn-1:hover::before {
    opacity: 1;
}
.gamingbtn-1:active::after {
    background: transparent;
}
.gamingbtn-1:active {
    color: #000;
    font-weight: 600;
}