body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background: #f4f4f4;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.link-tree {
	text-align: center;
	background: #f7aa8c;
	padding: 20px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 300px;
}

.link-tree h1 {
	margin: 0 0 10px;
	font-size: 24px;
	color: #222;
}

.link-tree .subtitle {
	margin-top: 0;
	margin-bottom: 50px;
}

.link-tree .logo img {
	width: 50%;
	margin-bottom: 10px;
}

.link-tree p {
	margin-bottom: 20px;
	font-size: 18px;
	color: #555;
}

.link-tree ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.link-tree ul li {
	margin: 20px 0;
}

.link-tree ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #555;
	font-size: 22px;
	transition: color 0.3s ease;
}

.link-tree ul li a i {
	margin-right: 10px;
	font-size: 24px;
}

.link-tree ul li a:hover {
	color: #f00;
}
