:root {
	--white: #c1bdb7;
	--font_main: "Comfortaa", sans-serif;
	--main_gray: #303e40;
	--secondary_gray: #636464;
	--background_gray: #000203;
	--background_gray_rgb: 0, 2, 3;

	--particle_lines: #0b008e;
	--particle_lines_rgb: 11, 0, 142;

	--particle_color: #08084d;
	--particle_color_rgb: 27, 28, 125;

	--glow_color: #2f307f;
}

@font-face {
	font-family: "comfortaa";
	src: url("/assets/fonts/Comfortaa.ttf");
}

body {
	margin: 0;
	font-family: comfortaa;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	overflow: hidden;
}

canvas {
	display: block;
}

/* ---- particles.js container ---- */

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--background_gray);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

@keyframes stripes {
	100% {
		background-position: 0 53.3px;
	}
}

.box_main_title {
	background-image: linear-gradient(
		0deg,
		var(--white),
		var(--main_gray),
		var(--white)
	);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: stripes 3s linear infinite;

	/* text glow */
	/* text-shadow: 0 0 1px var(--glow_color), 0 0 2px var(--glow_color), 0 0 3px var(--glow_color), 0 0 4px var(--glow_color), 0 0 5px var(--glow_color), 0 0 6px var(--glow_color), 0 0 7px var(--glow_color); */

	font-size: 3rem;
	font-family: var(--font_main);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 0.5rem;
	/* margin-bottom: 0.5rem; */
}

.box_round_corners {
	margin: 20px;
	border-radius: 12px;
	outline: solid;
	outline-color: var(--particle_lines);
	outline-width: 0.35rem;

	padding: 10px;

	background-color: rgba(var(--background_gray_rgb), 0.75);
}

.inner_box {
	margin: 20px;

	padding: 15px;

	border-radius: 5px;

	outline: solid;
	outline-color: rgba(var(--particle_color_rgb, 0.1));
}

.inner_box_title {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--white);
	margin-bottom: 0.3em;
}
.inner_box_title.small {
	font-size: 1.3em;
	font-weight: normal;
}
.inner_box_title.small.no_margin {
	margin-bottom: 0;
}
.inner_box_title.light {
	font-weight: lighter;
}

.box_text {
	font-size: 0.9em;
	color: var(--white);
	margin-bottom: 0.5em;
}

.social_icon {
	height: 30px;
	fill: rgba(var(--particle_color_rgb, 0.1));

	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);

	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.social_icon:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
	transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
