/* Custom Fonts များကို ခေါ်ယူခြင်း */
@font-face {
	font-family: 'Blue Mirage';
	src: url('Blue Mirage.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Vector';
	src: url('vector_bold_ttf-webfont.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

.stars {
	position: fixed; /* absolute အစား fixed ပြောင်းထားသည် */
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1; /* အနောက်ဘက်ဆုံးသို့ ပို့ထားသည် */
}

.star {
	position: absolute;
	border-radius: 50%;
}

body {
	margin: 0;
	padding: 0;
	color: #ecf0f1;
	background-color: #05060b; 
	background-image: radial-gradient(ellipse at bottom, #162536 0%, #05060b 100%); /* Body တွင် Background ထည့်ထားသည် */
	font-family: 'Inter', sans-serif;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

main {
	position: fixed; /* absolute အစား fixed ပြောင်းထားသည် */
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title {
	font-family: 'Blue Mirage', serif; /* Blue Mirage Font ကို အသုံးပြုထားပါသည် */
	font-weight: normal;
	font-size: 5rem;
	text-align: center;
	animation: fadeIn 0.5s ease-in 0.2s;
	margin: 0;
	padding: 0;
}

.hr-container {
	animation: fadeIn 0.5s ease-in 0.2s;
	display: flex;
	justify-content: center;
}

.hr {
	border: 0;
	height: 1px;
	width: 100%;
	background: #ffffff;
	margin: 20px 0;
	display: inline-block;
	margin: 10px 0px;
	padding: 0;
}

.sub-title {
	font-family: 'Vector', sans-serif; /* Vector Font ကို အသုံးပြုထားပါသည် */
	letter-spacing: 4px; /* စာလုံးတစ်လုံးနှင့်တစ်လုံးကြား Spacing ခြားပေးထားပါသည် */
	font-weight: normal;
	font-size: 2rem;
	text-align: center;
	animation: fadeIn 0.5s ease-in 0.2s;
	margin: 0;
	padding: 0;
}

.copyright {
	font-weight: 300;
	font-size: .6rem;
	text-align: center;
	padding: 20px;
	animation: fadeIn 0.5s ease-in 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}

footer {
	position: fixed; /* absolute အစား fixed ပြောင်းထားသည် */
	bottom: 0;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* မျက်နှာပြင် အရွယ်အစားအလိုက် စာလုံးအရွယ်အစားများ */
@media only screen and (max-width: 300px) {
	.title { font-size: 1.5rem; }
	.sub-title { font-size: 0.5rem; letter-spacing: 2px; }
	.copyright { font-size: .4rem; }
}

@media only screen and (min-width: 300px) {
	.title { font-size: 2rem; }
	.sub-title { font-size: 0.8rem; letter-spacing: 3px; }
	.copyright { font-size: .5rem; }
}

@media only screen and (min-width: 600px) {
	.title { font-size: 3.5rem; }
	.sub-title { font-size: 1.2rem; letter-spacing: 4px; }
	.copyright { font-size: .6rem; }
}

@media only screen and (min-width: 768px) {
	.title { font-size: 5rem; }
	.sub-title { font-size: 1.5rem; letter-spacing: 5px; }
	.copyright { font-size: 1rem; }
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes moveUp {
	0% { transform: translateY(0); }
	100% { transform: translateY(-100vh); }
}