@charset "UTF-8";

/* CSS rules go below */

body{

	font-family: "Helvetica", "Arial", sans-serif;
	color:rgb(0, 72, 25);
	font-size:  4.6rem;
	background: 
	url('../images/cat.png') no-repeat center 5cm,
  linear-gradient(#adff08, #fca1ff);
  
background-size: auto;
}
.extension-download {
	display: flex;
	justify-content: center; /* 가로 중앙 정렬 */
	margin: 2rem 0; /* 위아래 여백 조절 */
  }

.page-wrapper{
	padding:1rem;
	display: flex;
	flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 다시 가운데 정렬 */
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
    position: relative; /* 추가 (필요 시) */
}

h1 {
    text-align: left;
    align-self: flex-start;
    margin-left: 2rem; /* 원하면 조절 가능 */
    max-width: none;   /* 공통 max-width 제거 */
}

h2, p {
    text-align: center;
    max-width: 50rem;
}
.buda-image {
	position: absolute; /* 또는 absolute */
	top: 88rem;       /* h2 위치에 맞게 조절 */
	right: 10rem;     /* 화면 오른쪽 가장자리에서 2rem 떨어짐 */
	width: 400px;     /* 이미지 크기 조절 */
	height: auto;
	z-index: 1000;   /* 다른 요소보다 위에 위치하도록 */
  }
nav {
	display: flex;
	justify-content: center;  /* 가로 방향 중앙 정렬 */
	gap: 2rem;                /* 메뉴 사이 간격 조절 */
	margin-top: 2rem;
	margin-bottom: 2rem;
  }
  
  nav a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	font-size: 1.2rem;
  }

.extension-download a{
	font-size:1.5rem;
	padding:1.5rem;
	border-radius: 2rem;
	text-decoration: none;
	border: 1px solid blue;
}

.extension-documentation{
	width:50vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column; /* 위아래 쌓기 */
	align-items: center;    /* 가로 중앙 정렬 */
	gap: 1rem;
    clear: both;            /* float 해제 */
  }
	



  .extension-reviews-block{
	width:100%;
	max-width: unset;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.extension-review{
	width:25vw;
	padding:1rem;
	margin:1rem;
	border:1px solid black;
	box-sizing: border-box;
	font-size: smaller;
}
  
video{
	display: block;
	float:left;
	clear:both;
	width:100%;
	height:auto;
	margin-top:1rem;
	margin-bottom:1rem;
	background-color: black;
}


.extension-documentation-images {
	display: flex;
	flex-direction: column;      /* 세로 방향으로 쌓기 */
	align-items: center;         /* 가로 중앙 정렬 */
	gap: 0.5rem;                 /* 줄 사이 간격 */
	margin-top: 1rem;
  }
  
  /* 공통 스타일 */
  .line-block {
	height: 6px;
	background-color: rgb(0, 155, 95);
	border-radius: 3px;
  }
  
  /* 선 길이 점점 짧아지게 */
  .block-1 {
	width: 600px;
  }
  
  .block-2 {
	width: 300px;
  }
  
  .block-3 {
	width: 150px;
  }
  
  .block-4 {
	width: 70px;
  }
  
  .block-5 {
	width: 40px;
  }



section.extension-installation ol{
	text-align: left;
}

footer{
	border-top:1px solid black;
}



/* CSS style for mobile devices */

@media (max-width: 780px) {
  	.extension-documentation{
		width:90vw;
	}
	.extension-review{
		width:90vw;
		margin-left:0;
		margin-right:0;
	}
}


