@font-face {
	font-family: "IRANSansXV";
	font-weight: 100 1000;
	font-display: fallback;
	src: url("./fonts/woff/IRANSansXV.woff") format("woff-variations"),
		url("./fonts/woff2/IRANSansXV.woff2") format("woff2-variations");
}

@font-face {
	font-family: "IRANSansX";
	font-style: normal;
	font-weight: normal;
	src: url("./fonts/woff/IRANSansX-Regular.woff") format("woff"),
		url("./fonts/woff2/IRANSansX-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "IRANSansX";
	font-style: normal;
	font-weight: bold;
	src: url("./fonts/woff/IRANSansX-Bold.woff") format("woff"),
		url("./fonts/woff2/IRANSansX-Bold.woff2") format("woff2");
}

* {
	font-family: "IRANSansX";
	font-feature-settings: "ss02";
}

body {
	text-align: center;
	direction: rtl;
	background-color: #eef1f5;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 900px;
	margin: 50px auto;
	background: white;
	padding: 40px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
}

h1 {
	color: #2c3e50;
	font-size: 34px;
	margin-bottom: 20px;
}

p {
	color: #444;
	line-height: 1.9;
	font-size: 18px;
}

ul {
	list-style-type: none;
	padding: 0;
}

li {
	background: #3498db;
	color: white;
	padding: 14px;
	margin: 10px 0;
	border-radius: 8px;
	font-size: 18px;
	transition: all 0.3s ease;
}

li:hover {
	background: #2980b9;
}

.contact {
	margin-top: 25px;
	font-size: 20px;
	background: #2ecc71;
	color: white;
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact:hover {
	background: #27ae60;
}

.footer {
	margin-top: 40px;
	font-size: 14px;
	color: #777;
}