@charset "utf-8";

/* 기본 색상 */
:root {
	--main-color: #5d9ab2;
	--accent-color: #bf6a7a;
	--dark-main-color: #2b5566;
  --text-bright-color: #fff;
}

/* 기본 페이지 설정 */
body {
  margin: 0;
	font-family: '맑은 고딕',	'Apple SD Gothic Neo', 	sans-serif;
}

/* 콘텐츠A: 히어로 이미지 */
.conA {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 450px;
	background-image: url(../images/fruits.jpg);
	background-position: center;
	text-align: center;
	background-size: cover;
  color: #fff;
  color: var(--text-bright-color);
}

.conA h1 {
	margin-top: 0;	
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
}

.conA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 24px;
}