@import url("https://fonts.googleapis.com/css2?family=Inconsolata&family=Poppins:wght@400;600;900&display=swap");
@import url(./responsive.css);
@import url(./card.css);

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	--viewport-height: 100%;
	font-family: "Poppins", sans-serif;
}

body {
	background-color: #181818;
	overflow-x: hidden;
}

html {
	height: calc(var(--viewport-height) - 55px);
}

.hero-wrapper {
	height: 80vh;
	width: 100vw;
}

.c {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-inner h1 {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(90deg, #fff, #aaa);
	font-size: 100px;
	letter-spacing: -7px;
}

.hero-inner h4 {
	color: #9ba1a6;
	font-weight: lighter;
	width: 300px;
	text-align: center;
	margin: 0 auto;
}
.tags {
	margin-top: 10px;
	position: absolute;
	left: 0;
	right: 0;
	width: calc(100% - 40px);
}

.tags span:nth-child(1) {
	margin-left: 0;
}
.tag {
	color: #3984ff !important;
	padding: 2px 8px;
	font-size: 13px;
	border-radius: 3px;

	white-space: nowrap;
	word-wrap: break-word;
}

.header {
	position: fixed;
	padding: 20px;
	width: 100%;
	z-index: 99;
}

.heading-inner {
	width: 80%;
	justify-content: space-between !important;
	padding: 10px 0;
}

.logo img {
	width: 40px;
}

.button {
	position: relative;
	background: url(..//assets/blakish.png);
	display: flex;
	height: 40px;
	padding: 0 15px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
		rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
		rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	border-radius: 10px;
	color: #e1e1e1;
	cursor: pointer;
}

.button svg {
	margin-right: 10px;
	display: block;
}

.button:hover {
	background: url(..//assets/sussy_White_stuff.png);
}

.s-input {
	background: none;
	border: none;
	color: #e1e1e1;
	outline-width: 0;
	font-family: "Inconsolata", monospace;
	margin-left: 20px;
	height: 40px;
	font-size: 16px;
}

.popped {
	padding: 20px;
	border-radius: 10px;
	background-color: #252525;
}

@supports (backdrop-filter: blur(10px)) {
	.popped {
		backdrop-filter: blur(10px);
		background-color: rgba(59, 58, 58, 0.342);
	}
}

.popped .button {
	box-shadow: none;
}
*::-webkit-scrollbar {
	display: none;
}

.footer {
	background-color: rgba(0, 0, 0, 0.12);
	padding: 30px;
	margin-top: 60px;
}
.footer img {
	width: 20px;
	color: white;
	margin-right: 10px;
}

.button a {
	text-decoration: none;
}

.footer span,
.footer a {
	font-family: "Inconsolata", monospace;
	color: #6e6e6e;
}

.viewer {
	background-color: #252525;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 100;
	display: none;
}

@supports (backdrop-filter: blur(5px)) {
	.viewer {
		backdrop-filter: blur(8px);
		background-color: rgba(14, 14, 14, 0.096);
	}
}

.v-inner {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
		rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
		rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	background-color: #2c2b2b;
	min-height: 100px;
	border-radius: 10px;
	width: 500px;
	position: relative;
	padding: 30px;
}

.close svg {
	background-color: rgba(0, 0, 0, 0.25);
	padding: 5px;
	border-radius: 50%;
	top: -10px;
	width: 30px;
	height: 30px;
	position: absolute;
	right: -10px;
	backdrop-filter: blur(10px);
	cursor: pointer;
}

.title {
	color: silver;
	margin-bottom: 10px;
	justify-content: left;
}

.title .trig {
	margin-left: 10px;
	background-color: rgba(64, 11, 255, 0);
}
.description {
	color: gray;
	font-size: 13px;
	margin-bottom: 10px;
}

.trig {
	background-color: #464343;
	color: #9ba1a6;
	font-size: 12px;
	border-radius: 4px;
	padding: 5px 10px;

	margin-right: 10px;
}
