@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
	font-family: 'IranSans', sans-serif;
}

body {
	background-color: #222;
	--sb-track-color: #222222;
	--sb-thumb-color: #ffd700;
	--sb-size: 12px;
}

body::-webkit-scrollbar {
	width: var(--sb-size)
}

body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 4px;
}

@supports not selector(::-webkit-scrollbar) {
	body {
		scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
	}
}

a {
	text-decoration: none;
}

.content {
	width: 80%;
	background-color: #013a4a;
	color: #FFD700;
	border-radius: 12px;
	padding: 5px 30px;
	margin: 20px auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content .title {
    text-align: center;
}

h1 {
    font-size: 24px;
}

.section {
    margin-top: 20px;
}

.section a {
    color: #ff9100;
    font-size: 18px;
    transition: font-size 0.3s ease;
}

.section a:hover {
    color: #d97b00;
    font-size: 20px;
}

.section img {
    display: block;
    margin: 0 auto;
    max-width: 800px;
    max-height: 800px;
}

/* .section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
} */

.step {
    font-weight: bold;
    color: #ff9100;
}

footer {
	position: relative;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	background-color: #013a4a;
	color: #FFD700;
	text-align: center;
	padding: 0px 30px;
	top: 40px;
	margin-top: 20px;
	border-top: 2px solid #FFD700;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.footer-content {
	margin: 0 auto;
	padding: 10px;
}

.footer-links {
    margin-top: 4px;
	margin-bottom: 16px;
}

.footer-links a {
	color: #FFD700;
	padding: 8px 15px;
	font-weight: bold;
	position: relative;
	transition: color 0.3s;
	font-size: 18px;
    margin: 8px;
}

.footer-links a:hover {
	color: #00c9c9;
}

.footer-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #FFD700;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.footer-links a:hover::after {
	transform: scaleX(1);
}