body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #333;
	background-color: #f5f5f5;
}

header {
	background-color: #fff;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
	font-size: 48px;
	font-weight: 300;
	margin: 0;
	color: #1e90ff;
	text-shadow: 1px 1px #ccc;
}

main {
	padding: 50px 20px;
	text-align: center;
}

p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 20px;
	color: #777;
}

.loader {
	margin-top: 50px;
	border: 5px solid #ccc;
	border-top: 5px solid #1e90ff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

footer {
	background-color: #fff;
	padding: 20px;
	text-align: center;
	box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
	font-size: 16px;
	margin: 0;
	color: #999;
}

.social-links {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.social-links li {
	display: inline-block;
	margin: 0 10px;
}

.social-links a {
	display: block;
	background-color: #1e90ff;
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	transition: background-color 0.2s;
}

.social-links a:hover {
	background-color: #0077b5;
}
