<style>
.vs_button {
color: white; /* 버튼 글자색 */
background-color: #ff1100; /* 버튼 배경색 */
border: 1px solid rgba(0,0,0,0.1); /* 버튼 외곽선 색 */
border-radius: 3px; /* 코너 라운딩 */
padding: 8px 30px; /* 안쪽 여백, 8px은 상하, 30px은 좌우 */
font-weight: bold; /* 버튼 굵기, 얇게 하려면 normal 입력 */
font-size: 16px;
text-align: center;
margin: 0;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.vs_button:hover {
background-color: #ffffff; /* 버튼 배경색 */
border: 1px solid rgba(0,0,0,0.1); /* 버튼 외곽선 색 불투명도 10% 0.1 숫자가 높을 수록 진함 */
color: black; /* 버튼명 글자 색 */
}
</style>