body {
  margin: 0;
  overflow: hidden;
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none

}

/* .fixed-logo {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1600px;
	height: 350px;
	z-index: 1000;
} */
    
.http-btn{
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 10px;
  color: gray;
  text-decoration: none;
  padding: 10px;
  color: black;     
}

.http-btn:visited {
  color: black;              /* 방문 후에도 검정 유지 */
}

.http-btn:hover {
  color: #4d77ff;              /* 방문 후에도 검정 유지 */
}


h1{
	  font-size: 3rem;
	  color: white;
	  text-align: center;
	  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	  /* margin-bottom: 20px; */
	  padding-bottom: 30px;
}

/* h2{
	padding-top: 250px;		제작자 부분 바닥에서 얼마나 띄워져야 하는지
	justify-content: center;
	text-align: center;
	color: white;
	font-size: 15px;	
} */

main{
	display: flex;
	height: 600px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.contents{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 130px 0 0 0 ;
	
}

.left{
	width: 800px;
	margin-left: 200px;
	justify-content: center;
	text-align: center;
	/* border: 1px solid black */
}

.right{
	display: flex;
	height:450px;
	width:1000px;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px;                /* 버튼 사이 간격 */
	/* border: 1px solid black */
}

.btn-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-wrapper label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  color: black;     
}

.btn-wrapper label:hover {
  color: #4d77ff;              /* 방문 후에도 검정 유지 */
}


.btn-wrapper label:visited {
  color: black;              /* 방문 후에도 검정 유지 */
}

.btn-wrapper img {
  width: 250px;
  height: 250px;
  z-index: 1;
}

footer {
  height: 200px;
  margin-top: auto;
  justify-content: center;
  text-align: center;
  color: gray;
  font-size: 12px;
  display: flex;
  align-items: center; /* 수직 중앙 정렬 */
  padding-top: 100px;
}