
#heada{
    margin-top: 100px;
}
#Clicks{
    border: none;
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
}
.button {
    margin: 0 5px;
    padding: 10px 20px;
    background: linear-gradient(45deg,#fff6f6,#FFA500 );
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    animation: moveButton 2s infinite alternate, gradientAnimation 5s linear infinite;
    background-size: 200% 200%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}


.hiragana-container {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    display: none;
    user-select: none;
    margin-bottom: 20px;
}
.hiragana-section h3{
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.hiragana-wrapper table {
    border-collapse: collapse;
    border: 2px solid #fff;
}

.hiragana-wrapper th, .hiragana-wrapper td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 20px;
}

.hiragana-wrapper td:first-child,
.dan {
    font-weight: bold;
    background-color: #fff6f6;
    color: #000;
    pointer-events: none;
}

tr:nth-child(odd) {
    background-color: #fff6f6;
}
.hiragana-wrapper td:hover {
    background-color: #000;
}
.hiragana-wrapper td:hover .first-letter {
    color: #FFA500;
    font-weight: bold;
}
.first-letter {
    color: #000;
    font-size: 22px;
}

@keyframes moveUpDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 각 버튼에 애니메이션 적용 */
#hiragana {
    animation: moveUpDown 2s infinite alternate, gradientAnimation 10s linear infinite;
}

#Katakana {
    animation: moveUpDown 1.5s infinite alternate, gradientAnimation 10s linear infinite;
}

#murky {
    animation: moveUpDown 1.8s infinite alternate, gradientAnimation 10s linear infinite;
}

#half-murky {
    animation: moveUpDown 2.2s infinite alternate, gradientAnimation 10s linear infinite;
}

#minorhiragana {
    animation: moveUpDown 1.3s infinite alternate, gradientAnimation 10s linear infinite;
}

#minorKatakana {
    animation: moveUpDown 2.5s infinite alternate, gradientAnimation 10s linear infinite;
}



#depiction{
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff6f6;
    margin-top: 20px;
    padding: 1px;
}
.content{
    width: 70%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.content h3{
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
    color: rgb(73, 73, 73);
}
.content p{
    font-size: 16px;
    text-align: left;
}


@media only screen and (max-width: 768px) {
    #depiction{
        width: 100%;
    }


}



