body {
	font-family: lingo;
	background-color: black;
	margin: 0;
	padding: 0;
	color: white;	
	font-size: 18px;
	overflow-x: hidden;
}

@font-face {
	font-family: lingo;
	src: url(assets/fonts/thatthatnewpixelfamilytest-square.otf);
}
@font-face {
	font-family: lingo;
	src: url(assets/fonts/thatthatnewpixelfamilytest-italicsquare.otf);
	font-style: italic;
}

.hero {
	position: relative;
	width: 100%;
	height: 90dvh;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 10px;
	padding-left: 25px;
	box-sizing: border-box;
	mix-blend-mode: difference;
}
.topgrad {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50dvh;
	background: linear-gradient(black, transparent);
	z-index: 2;
}

h1, h2, h3 {
	margin: 0;
	bottom: 0;
	font-weight: 50;
}

h1, h2 {
	text-transform: lowercase;
}

h1 {
	font-size: 60px;
}
h2 {
	font-size: 50px;
}
h2::before {
	content: "› ";
}

#bg {
	background-color: rgb(22, 10, 35);
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 130vh;
	z-index: -1;
	filter: blur(10vh) contrast(3) brightness(100) blur(9vh) contrast(3);
	-webkit-filter: blur(10vh) contrast(3) brightness(100) blur(9vh) contrast(3);
}

#hover {
	position: fixed;
	z-index: 3;
	height: 100px;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
	-webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
	left: 0;
	top: 0;
	transition: scale 0.2s;
	transform-origin: 0 0;
}

a {
	color: inherit;
	text-transform: lowercase;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
  background:linear-gradient(transparent, black calc(12vh + 50px), black);
}

.content > div {
	width: 80%;
	max-width: 700px;
	margin-top: 12vh;
	padding-bottom: 100px;
}

.projects {
	border-bottom: solid 1px;
	box-sizing: border-box;
	padding: 0;
}
.projects > li {
	border-top: solid 1px;
	list-style: none;
	display: flex;
}

.projects > li > a {
	text-transform: none;	
	text-decoration: none;
	padding: 10px;
	padding-top:15px;
	box-sizing: border-box;
	flex: 1;
	background: linear-gradient(to right, white, white 50%, black 50%, black);
	background-size: 210% 100%;
	background-position: 100%;
	transition: 0.2s;
	display: flex;
	align-items: center;
	/* cursor: none; */
}
.projects > li > a:hover {
	background-position: 0;
	color: black;
}
.projects > li > a > h3 {
	flex: 1;
}
.tag {
	text-transform: lowercase;
	margin: 0;
	margin-left: 5px;
	margin-bottom: 5px;
	border: solid 1px;
	width: fit-content;
	padding: 10px;
	padding-bottom: 5px;
	border-radius: 100vmin;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.projects > li > a > sub {
	text-align: right;
	margin-left: 15px;
	margin-right: 10px;
	text-decoration: underline wavy;
}

.preview {
	max-width: 100%;
	margin-bottom: 20px;
	margin-top: 20px;
}

pre {
	font-family: inherit;
	font-size: inherit;
	white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;
}

.pls {
	position: absolute;
	right: 0;
	bottom: -20px;
	margin: 30px;
	box-sizing: border-box;
	border: solid 1px;
	width: 50px;
	height: 50px;
	border-radius: 100vmin;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	animation: updown 2s infinite;
}
@keyframes updown {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 -10px;
	}
	100% {
		translate: 0 0;
	}
}

.hero > .myname {
	position: relative;
	width: fit-content;
}
.myname > h1 {
	width: fit-content;
}
.sidetag {
	position: absolute;
	bottom: -0.5em;
	right: -30px;
	rotate: -10deg;
	transform-origin: bottom center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	
	background-color: rgba(68, 0, 135, 0.2);
	padding: 10px;
	
	border-radius: 10px;
	border-bottom: solid 1px rgba(255, 255, 255, 0.4);
	border-right: solid 1px rgba(255, 255, 255, 0.2);

	max-height: fit-content;
	z-index: 3;
}
.sidetag > a {
	text-transform: none;
	text-decoration: wavy underline;
	font-size: 15px;
}
.sidetag::before {
	content: "✦";
	padding-right: 5px;
}