JSFiddle - React, Tailwind, and code Playground

by learningforever

HTML

<div class="wp-block-button myRedToneBtn"><a class="wp-block-button__link wp-element-button" href="https://www.thewordcracker.com/miscellaneous/%ed%81%b4%eb%9d%bc%ec%9a%b0%eb%93%9c%ec%9b%a8%ec%9d%b4%ec%a6%88%eb%a1%9c-%ec%84%9c%eb%b2%84-%ec%9d%b4%ec%a0%84%ed%96%88%ec%8a%b5%eb%8b%88%eb%8b%a4/">💡클라우드웨이즈로 서버를 이전한 EU</a></div>

CSS

.myCustomBtn a {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #6dd5ed, #2193b0);
    border-radius: 17px;
    border: none;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4rem !important;
    line-height: 2.2rem !important;
    font-weight: bold;
    padding: 12px 35px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.myRedToneBtn a {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #ff5f6d, #ff9966); /* Red gradient */
    border-radius: 17px;
    border: none;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4rem !important;
    line-height: 2.2rem !important;
    font-weight: bold;
    padding: 12px 35px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.myRedToneBtn a:hover, .myRedToneBtn a:focus {
    background: linear-gradient(to bottom, #ff9966, #ff5f6d); /* Inverse red gradient on hover */
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}