.click-me-button {
display: inline-block;
background-color: #101E4A; /* 배경색 */
border: none;
width: 100%;
color: white !important; /* 글자색 */
text-align: center;
font-size: 20px;
padding: 15px 20px; /* 버튼 크기 */
border-radius: 10px;
transition-duration: 0.4s;
cursor: pointer;
font-weight: bold;
text-decoration: none; /* 링크 밑줄 제거 */
}
.click-me-button:hover {
background-color: #FFDD4A; /* 마우스 호버시 배경색 */
color: #101E4A !important; /* 마우스 호버시 텍스트 색상 변경 */
font-weight: bold;
}