*{
  margin:0; padding:0;
  font-weight:300;
  word-break: keep-all;
}
html{
  -ms-overflow-style:none;
  font-size:62.5%;
  line-height:1.285;
}
body{
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  color:#fff;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


h1{
  font-size:2.4rem;
}
p{
  font-size:1.4rem;
}
.stlye_btn{
  width:100%;
  max-width:420px;
  padding-top:16px;
  padding-bottom:16px;
  border-width:1px;
  border-style:solid;
  border-color:rgba(0,0,0,0);
  background-color:rgba(0,0,0,0.8);
  font-size:1.4rem;
  color:#fff;
  border-radius: 10px;
  margin-bottom:40px;
}
span{
  font-size:1.1rem;
}
#main{
  width:90%;
  text-align: center;
  background-color: rgba(red, green, blue, alpha 0.0);
}

.link_a{
  width: 90%;
  text-decoration: none;
  color:#fff;
  font-size:1.4rem;
  background-color: rgba(0,0,0,0);
}
.link_span{
  font-size:1.4rem;
  display: block;
}
.link_ul{
  width:100%;
  text-align: center;
}
.link_li{
  white-space: nowrap;
  padding:8px 20px;
  line-height: 32px;
  margin: 10px 5px;
  background-color: rgba(0,0,0,0);
  display: inline-block;
  border-radius: 40px;
  border-width:1px;
  border-style:solid;
  border-color:rgba(255,255,255,1);
}
.link_li:hover{
  background-color: rgba(0,0,0,1);
  color:#fff;
  cursor: pointer;
  font-weight: 400;
}
/* 결과 화면의 공유 버튼 노출/정렬 보장 */
/* === 결과 페이지 공유 버튼 전용 스타일(강제 덮어쓰기) === */
#result #shareButton {
  display: block !important;
  width: 90%;
  margin: 24px auto 0;
  padding: 14px 22px;

  /* 기본 상태: 흰 배경 / 검정 글자 / 테두리 없음 */
  background: #fff !important;
  color: #111 !important;
  border: none !important;
  border-radius: 10px;

  /* 모션 & 그림자 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background .2s ease, color .2s ease,
              box-shadow .2s ease, transform .06s ease;
}

/* Hover: 검정 배경 / 흰 글자 */
#result #shareButton:hover {
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Active(눌렀을 때) 살짝 복귀감 */
#result #shareButton:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 키보드 접근성: 포커스 링(디자인에 거슬리면 조정) */
#result #shareButton:focus-visible {
  outline: 2px solid rgba(17,17,17,.6);
  outline-offset: 2px;
}

