@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
@import url("https://unpkg.com/@fortawesome/fontawesome-free@7.0.1/css/all.min.css");

:root {
	--light-bg: #1f003e;
	--primary: #d34644;
	--secondary: #250c3a;
	--text: #fff;
}

@keyframes fadeInAnimation {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	color: var(--text);
	font-family: "Raleway", sans-serif;
	scrollbar-width: thin;
	scrollbar-color: var(--primary);
}

::selection,
::-moz-selection {
	background: #372551;
}

html::-webkit-scrollbar {
	width: 16px;
}

html::-webkit-scrollbar-track {
	background-color: var(--secondary);
	border-radius: 100px;
}

html::-webkit-scrollbar-thumb {
	background-color: var(--primary);
	border-radius: 100px;
}

body {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	text-shadow: 2px 2px 11px black;
	background-color: var(--light-bg);
}

button {
	background: none;
	outline: none;
	border: none;
	width: 100%;
	justify-content: center;
}

pre {
	display: inline;
	font-family: "Rubik", sans-serif;
	background-color: #000;
	padding: 2px 6px;
	border-radius: 4px;
}

.header {
	min-height: 10vh;
	padding-bottom: 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeInAnimation ease-in-out 2s forwards;
}

.background {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	background: url("/public/background.svg") no-repeat center/cover;
}

.titlecontainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90%;
}

.sitetitle {
	margin-left: 11%;
	padding: 3px 8px;
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--text);
	border-radius: 3px;
	letter-spacing: 8px;
	font-size: 32.5px;
	text-transform: uppercase;
	cursor: pointer;
}

.sitetitle > a {
	color: var(--text);
	text-decoration: none;
}

.sitetitle:hover {
	animation: pulse 1s;
}

.navbar {
	width: 10%;
	margin: 20px 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
	overflow: hidden;
}

.navbar > li {
	margin: 30px 0;
	padding: 3px 20px;
	float: left;
	display: inline-flex;
	cursor: pointer;
}

.navbar > li > a {
	color: var(--text);
	font-size: 16px;
	font-family: "Raleway", sans-serif;
	letter-spacing: 2px;
	text-decoration: none;
}

.link {
	font-size: 20px;
}

.icon {
	width: 48px;
	height: 48px;
	margin-right: 16px;
}

.content {
	width: 50%;
	margin-top: 5vh;
}

.container {
	bottom: 0;
	display: flex;
	justify-content: center;
	letter-spacing: 3px;
	font-family: "Raleway", sans-serif;
}

.docs {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto 5vh;
	padding: 30px;
	letter-spacing: 3px;
	font-family: "Raleway", sans-serif;
	overflow: hidden;
	overflow-wrap: break-word;
	border: 1px solid #b29dc688;
	background-color: #1f003e54;
	border-radius: 30px;
}

.button {
	position: relative;
	color: var(--text);
	padding: 20px;
	line-height: 64px;
	margin: 10px 0;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s;
}

.button::before,
.button::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}

.button::before {
	left: 1px;
	z-index: 1;
	opacity: 0;
	background: rgba(255, 255, 255, 0.1);
	transform: scale(0.1, 1);
}

.button:hover::before,
.button:has(input:checked)::before {
	opacity: 1;
	transform: scale(1, 1);
}

.button::after {
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.button:hover::after,
.button:has(input:checked)::after {
	transform: scale(1, 0.1);
	opacity: 0;
}

.button input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.button .icon {
	position: relative;
	z-index: 2;
}

.button .label {
	font-size: 18px;
	letter-spacing: 2px;
	position: relative;
	z-index: 2;
}

.button-right {
	margin-left: 20px;
}

.toggles {
	display: flex;
	align-items: center;
	margin: 20px 0;
}

.check {
	width: 16px;
	height: 16px;
	margin-right: 16px;
}