.myButton {
	box-shadow: 0px 1px 0px 0px #f0f7fa;
	background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
	background-color:#33bdef;
	border-radius:5px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:19px;
	font-weight:bold;
	padding:11px 68px;
	text-decoration:none;
	text-shadow:0px -1px 0px #5b6178;
}
.myButton:hover {
	background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
	background-color:#019ad2;
}
.myButton:active {
	position:relative;
	top:1px;
}


/* Make the sidebar sticky in GeneratePress */
/* GeneratePress 테마 사이드바 고정 */
@media (min-width: 1025px) {
.site-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
	
#right-sidebar {
    position: -webkit-sticky;
    position: sticky;
    bottom: 2rem; /* Change this value as you wish */
    align-self: flex-end;
}
}

/* 버튼꾸미기*/
.Button{
box-shadow: Opx 1px 0px 0px
#fff6af;
background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%) ; background-color: #ffec64; border-radius:6px;
border: 1px solid #ffaa22; display: inline-block; cursor:pointer;
color: #333333; font-family:Arial; font-size:20px; font-weight bold; padding: 10px 30px; text-decoration: none;
text-shadow:Opx 1px 0px #ffee66;
text-align: center;
}@
	button:hover {
background: linear-gradient(to bottom, #ffab23 5%, #ffec64 100%) ; background-color :#ffab23;
button:active i position: relative;
top: 1px;
}

/* 워드프레스 OnePress 테마 헤딩 태그 h2, h3, h4 스타일 변경하기 */

/* h2 헤딩 스타일 */
.single .entry-content h2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);    /* 음영 추가 */
    color: #666;                                    /* 텍스트 색상 설정 */
    background-color: #fff;                         /* 배경 색상 설정 */
    border-left: 8px solid #55555b;                 /* 왼쪽에 실선 테두리 추가 */
    border-bottom: 1px solid #000;                  /* 하단에 실선 테두리 추가 */
    padding: 3px 9px;                               /* 내용 주변에 패딩 설정 */
    margin: 30px 0 20px 0;                          /* 헤딩 주변 공간 조정 */
    text-align: left;                               /* 텍스트 왼쪽 정렬 */
}

/* h3 헤딩 스타일 */
.single .entry-content h3 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);    /* 음영 추가 */
    color: #2e86b9;                                 /* 텍스트 색상 설정 */
    background-color: #fff;                         /* 배경 색상 설정 */
    border-left: 8px solid rgba(85, 85, 91, 0.5882352941176471); /* 투명도를 가진 왼쪽 실선 테두리 추가 */
    border-bottom: 1px solid rgba(85, 85, 91, 0.5882352941176471); /* 투명도를 가진 하단 실선 테두리 추가 */
    padding: 3px 9px;                               /* 내용 주변에 패딩 설정 */
    margin-bottom: 15px;                            /* 헤딩 아래 공간 조정 */
    text-align: left;                               /* 텍스트 왼쪽 정렬 */
}

/* h4 헤딩 스타일 */
.single .entry-content h4 {
    padding: 3px 9px;                               /* 내용 주변에 패딩 설정 */
    border-left: 5px solid #cacaca;                 /* 더 연한 색상의 왼쪽 실선 테두리 추가 */
    border-bottom: 1px solid #cacaca;               /* 더 연한 색상의 하단 실선 테두리 추가 */
    margin-bottom: 15px;                            /* 헤딩 아래 공간 조정 */