@import('reset.css');

body {
	padding: 0px;
	margin: 0;
	background: rgb(247, 241, 249);
	font-family: "IBM Plex Serif", serif;
	font-size: 16px;
	line-height: 1.55em;
	padding-bottom: 80px;
}

* { box-sizing: border-box; scroll-behavior: smooth; }

#container {
	position: relative;
	margin: 0 auto;
}

a {
	color: #e508ff;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	line-height: 1.1em;
	transition: all 0.33s ease-in-out;
	position: relative;
}

a:hover {
	color: rgb(255, 0, 255);
}

a::after {
	display: block;
	content: " ";
	position: absolute;
	bottom: -0.07em;
	left: 0;
	width: 100%;
	height: 0px;
	border-bottom: 0.09em dotted #e508ff;
	transition: all 0.33s ease-in-out;
}

a:hover::after {
	bottom: -0.09em;
	border-bottom-color: transparent;
}

p {
	margin: 5px 0;
}

#cn-button {
	float: right;
	margin-top: 27px;
	padding: 12px 20px;
	margin-right: -5px;
}

#cn-button:hover {
	background-color: white;
	color: #e508ff;
}

.button {
	background: #e508ff;
	color: white;
	border-radius: 3px;
	box-shadow: 1px 3px 0px rgba(0,0,0,0.15);
	display: inline-block;
	text-decoration: none;
	padding: 10px 15px;
	text-align: center;
	font-weight: 800;
	line-height: 1em;
	font-size: 17px;
	transition: all 0.33s ease-in-out;
	font-family: "IBM Plex Mono", serif;
}

.button:hover {
	background:rgb(198, 11, 219);
	box-shadow: 0px 7px 0px rgba(0,0,0,0.10);
	transform: scale(1.04);
	color: white;
}

.button::after {
	display: none;
}

.std-container {
	position: relative;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 30px;
}

#menu {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 50px;
	/* background: rgba(0,0,0,0.55); */
	/* border-bottom: 1px solid rgba(0,0,0,0.11); */
	z-index: 1000;
	/* backdrop-filter: blur(10px); */
}

#menu img#logo {
	height: 60px;
	max-width: 50%;
	margin-top: 17px;
	object-fit: contain;
	margin-left: -8px;
}

#hero {
	position: relative;
	height: 50vh;
	min-height: 500px;
	overflow: hidden;
	background: linear-gradient(180deg, rgb(13, 6, 61) 30%, rgb(64, 6, 83) 100%);
	padding-top: 100px;
	border-bottom-right-radius: 50px;
}

#hero .std-container {
	display: flex;
	flex-direction: row;
	gap: 50px;
	height: 100%;
	z-index: 10;
	flex-wrap: wrap;
	align-content: space-between;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 40px;
	padding-bottom: 40px;
}

#hero:after { 
	-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	transform: perspective(200px) rotateX(40deg) scale(2, 1) translateZ(0);
	content: ""; 
	display: block; 
	position: absolute; 
	bottom: 0; 
	left: 0; 
	right: 0; 
	width: 100%; 
	height: 100vh;
	padding: 1px; 
	-webkit-background-clip: content-box; 
	-webkit-backface-visibility: hidden;
	outline: 1px solid transparent;
	transform-origin: bottom center;
	background-position: center bottom;
	background-size: 50px 80px;
	background-image: linear-gradient(to right, purple 2px, transparent 2px), 
					  linear-gradient(to bottom, purple 2px, transparent 2px);
	animation: hero-anim-after 4s infinite linear;
}

@keyframes hero-anim-after {
	0% {
		background-position: center 0;
	}
	100% {
		background-position: center 100%;
	}
}

#hero-text {
	font-size: 30px;
	color: white;
	line-height: 1.33em;
	flex-basis: 50%;
	min-width: 400px;
	flex-grow: 1;
}

#hero-text i {
	display: block;
	font-style: normal;
	font-size: 22px;
	line-height: 1.43em;
	margin-top: 10px;
	color: rgb(250, 171, 250);
}

#hero-text i.sm {
	font-size: 16px;
	margin-top: 18px;
}

#hero-text-2 {
	flex-basis: calc(40% - 40px);
	min-width: 400px;
	background: white;
	height: auto;
	border-radius: 0px;
	box-shadow: 10px 10px 0px rgba(10, 49, 164, 0.50);
	padding: 20px 25px;
	flex-grow: 1;
}

#hero-text-2 b {
	font-size: 16px;
	margin-top: 10px;
	display: block;
}

#hero-text-2 i {
	display: block;
	font-style: normal;
	font-size: 20px;
	font-family: "IBM Plex Mono", serif;
	line-height: 1.5em;
}

#hero-text-2 i u {
	color: rgb(150,150,150);
	text-decoration: none;
	font-style: italic;
	font-weight: 100;
}

#hero-text-2 small {
	color: rgb(150,150,150);
	line-height: 1.25em;
	margin-top: 10px;
	display: block;
	font-size: 13px;
}

.cc-masonry {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.cc-masonry .brick {
	flex-basis: calc(33.33% - 30px);
	background-color: white;
	min-width: 300px;
	flex-grow: 1;
	box-shadow: 4px 5px 0px rgba(0,0,0,0.05);
	border-radius: 10px;
	padding: 20px;
	border: 1px solid rgb(215, 215, 215);
}

.cc-masonry .brick h2 {
	font-family: "IBM Plex Mono", serif;
	font-weight: 100;
	margin: 0;
	padding-top: 10px;
	margin-bottom: 10px;
	border-top: 2px dotted gray;
	font-size: 20px;
	font-style: italic;
}

.cc-masonry .brick h3 {
	margin: 0;
	font-size: 15px;
	margin-top: 15px;
}

.cc-masonry .brick h4 {
	margin: 0;
	font-size: 13px;
	margin-top: 5px;
	color: rgb(67, 67, 67);
}

.cc-masonry .brick .app {
	background: #f8f1ff;
	padding: 10px;
	border-radius: 10px;
	margin-top: 10px;
}

.cc-masonry .brick .app img {
	height: 25px;
	display: block;
	margin-bottom: 10px;
}

.cmd {
	background: #530b9f;
	color: white;
	font-family: 'IBM Plex Mono', serif;
	font-size: 11px;
	line-height: 1.25em;
	padding: 10px 10px;
	font-weight: 900;
	border-radius: 4px;
}

.cmd p {
	display: inline;
	background: #1447bf;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 100px;
	line-height: 1.25em;
	border: 1px solid white;
}

.cmd.example {
	background: #0b8e9f;
}

.cmd.example p {
	border: 0;
	background-color: transparent;
	display: inline;
	padding: 0;
	border-bottom: 1px dotted white;
	border-radius: 0;
}

.brick p.note {
	font-size: 12px;
	color: rgb(130,130,140);
	line-height: 1.43em;
	margin-top: 10px;
	display: block;
}

.mt-10 {
	margin-top: 15px;
}

@media screen and (max-width: 990px) {
	.std-container {
		padding-left: 15px;
		padding-right: 15px;
	}
	#hero,
	#hero .std-container {
		height: auto;
		border-bottom-right-radius: 0;
	}
	#hero .std-container {
		gap: 20px;
	}
}

#footer {
	margin-top: 50px;
	font-size: 11px;
	color: #b29dc9;
	text-align: center;
	line-height: 1.35em;
}