h1 {
    color:#000000;
	font-family:"Noto Sans KR", sans-serif;
	font-size:44px;
	font-style:normal;
	font-weight:bold;
	line-height: 1.8;
}

h2 {
    color:#936df5;
	font-family:"Noto Sans KR", sans-serif;
	font-size:31px;
	font-style:normal;
	font-weight:bold;
	line-height: 1.8;
}
p {
    text-align: center;
    color:#58595b;
	font-family:"Noto Sans KR Medium", sans-serif;
	font-size:24px;
	font-style:normal;
	font-weight:500;
	line-height: 1.8;
}
div {
    text-align: center;
    font-family: 'Noto Sans KR Black', sans-serif;
    font-weight: bold;
}

.button {
    background-color: #a8d5c2; /* soft green */
    color: white;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #91c8b3; /* slightly darker on hover */
}


.inline-flex {
	max-width: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	 padding: 10px 0; 
}
.inline-flex img {
	max-width: 100%;
	height: auto;
	display: block;
}

#icon {
	height: 50.13px;
	width: 82.87px;
}

.centered-image {
    display: flex;
    justify-content: center; /* centers horizontally */
    height: 100vh;           /* full height of viewport */
    margin: 0;
}
.full-image {
    display: block;
    width: 100vw;     /* 100% of viewport width */
    height: auto;     /* maintain aspect ratio */
}