* {
	--dark-grey: #111319;
	--primary-color: #bea1ff;         /* Vibrant purple */
	--white: white;
	--black: black;
  --primary-dark: #6c00b5;          /* Darker shade of purple for hover states or text accents */
  --primary-light: #d9a8ff;         /* Soft tint of purple for subtle backgrounds or borders */
  --surface-color: #ffffff;         /* Card or container background */
  --border-color: #e5d4f5;          /* Light border to separate content subtly */

  --text-color: #1e1e1e;            /* Main text (near black) */
  --text-muted: #6c6c6c;            /* Muted text (subtext, descriptions) */
  --heading-color: #bea1ff;         /* Heading text with slight purple undertone */

  --accent-color: #00D2FF;          /* Cyan accent for call-to-actions or highlights */
  --accent-dark: #009dc1;           /* Darker variant of the accent */

  --error-color: #ff3b47;           /* For form errors or danger alerts */
  --success-color: #00c776;         /* For success messages */

	--rounded-full: 100rem;

	scroll-behavior: smooth !important;
}

.primary-color {
	color: var(--primary-color)
}

.white {
	color: white
}

html, body {
	scroll-padding-top: 140px;
	overflow-x:hidden;
	overflow-y: scroll;
	position: relative;
	width: 100%;
	margin: 0;
  	padding: 0;
}

html { height: 100%; scroll-behavior: smooth; !important;}

body {
	height: 100%;
	font-family: Poppins, sans-serif;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
	background: linear-gradient(
		86deg,
		var(--primary-color) 0%,
		var(--dark-grey) 8%,
		var(--dark-grey) 50%,
		var(--dark-grey) 92%,
		var(--primary-color) 100%
	);
	background-attachment: fixed;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

main {
        font-family: Arial, sans-serif;
        color: var(--white);
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

svg { width: 100%; height: auto; }