@charset "UTF-8";
/*
Theme Name: amiralithesz
Theme URI: https://www.arshiaalavi.ir
Author: arshia alavi
Author URI: https://www.arshiaalavi.ir
Description: یک پوسته اختصاصی
Requires at least: WordPress 6.3.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #000;
	color: #fff;
	font-family: 'VCR OSD Mono', monospace;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-right: 100px;
}

.white-square {
	width: 300px;
	height: 300px;
	background-color: #fff;
}

.site-text {
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
	letter-spacing: 1px;
	height: 20px;
	width: 100%;
	text-align: end;
}

.social-icons {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.social-icons a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.social-icons a:hover {
	opacity: 0.7;
}

.social-icons i {
	font-size: 16px;
}

@media (max-width: 768px) {
	.container {
		margin-right: 80px;
	}

	.white-square {
		width: 250px;
		height: 250px;
	}

	.site-text {
		font-size: 16px;
	}

	.social-icons {
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.container {
		margin-right: 40px;
	}

	.white-square {
		width: 200px;
		height: 200px;
	}

	.site-text {
		font-size: 14px;
	}

	.social-icons {
		gap: 15px;
		font-size: 12px;
	}
}