/*
Theme Name: Voidsheet
Author: hamdpac
Description: a functional theam with no limmits and infinit customisability
Version: 1.0
Text Domain: voidsheet
*/

/* Reset some default styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Header */
header {
	width: 100%;
	background-color: #4a90e2;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
	font-size: 2rem;
	margin-bottom: 5px;
}

header nav a {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-weight: 500;
}

header nav a:hover {
	text-decoration: underline;
}

/* Main content */
main {
	max-width: 900px;
	width: 100%;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	margin: 20px 0;
	border-radius: 8px;
}

/* Footer */
footer {
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 15px 0;
	text-align: center;
	margin-top: auto;
}

footer a {
	color: #4a90e2;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

/* Links */
a {
	color: #4a90e2;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Paragraphs and headings */
p {
	margin-bottom: 1em;
}

h2 {
	margin-bottom: 0.5em;
	color: #4a90e2;
}

h3 {
	margin-bottom: 0.5em;
	color: #333;
}

/* Buttons */
button, input[type="submit"] {
	background-color: #4a90e2;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
}

button:hover, input[type="submit"]:hover {
	background-color: #357ab7;
}

/* Images */
img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 10px 0;
}