본문 바로가기

항문거근 증후군1


/* chatgin-a */ .chatgin-a { display: flex; justify-content: center; align-items: center; margin-top: 10px; } .chatgin-a a { display: inline-block; width: 80%; padding: 20px 30px; background-color: #ff0000; color: white !important; text-align: center; text-decoration: none !important; border-radius: 5px; font-weight: bold !important; font-size: 1.2em; transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; animation: pulse 2s infinite; } .chatgin-a a:hover { background-color: #ffeb3b; color: #000000; transform: scale(1.05); } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }