@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
	--purple: #8F48EB;
	--orange: #E39600;
	--pink: #EA4C89;
	--blue: #1DA1F2;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
}

body {
	font-family: "DejaVu Sans Mono", monospace;
	font-size: 14px;
	line-height: 1.75rem;
	background-color: #000000;
	color: #ffffff;
}

main {
	margin-top: 4rem;
	margin-bottom: 4rem;
	padding-right: 40px;
	padding-left: 40px;
}

.container {
	max-width: 500px;
	margin-right: auto;
	margin-left: auto;
}

header {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 3rem;
}

header h1 {
	position: relative;
	place-self: center start;
	margin: 0;
	font-size: 2rem;
	font-family: 'Press Start 2P', cursive;
	line-height: 2rem;
	position: relative;
	background: linear-gradient(to right, var(--orange) 22%, var(--pink) 22%, var(--pink) 48%, var(--purple) 48%, var(--purple) 70%, var(--blue) 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

header h1:before {
	content: "/";
	color: var(--orange);
	position: absolute;
	left: -2rem;
	display: block;
	font-size: 2rem;
	width: auto;
}

.content, p {
	position: relative;
}

.content h1 {
	font-size: 2rem;
	line-height: 4rem;
}

.content h2 {
	font-size: 1.75rem;
	line-height: 3.5rem;
}

.content h3 {
	font-size: 1.5rem;
	line-height: 3rem;
}

.content h4 {
	font-size: 1.25rem;
	line-height: 2.75rem;
}

.content h5 {
	font-size: 1.125rem;
	line-height: 2.25rem;
}

.content h6 {
	font-size: 1rem;
	line-height: 1.75rem;
}

.content p {
	margin-bottom: 1.5rem;
}

.content a {
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	color: #d9d9d9;
}

.content a:hover {
	color: var(--purple);
	border-bottom-color: var(--purple);
}

.content img {
	position: relative;
	width: calc(100% + 200px);
	max-width: calc(100vw - 2rem);
	border-radius: 8px;
	margin: 32px -100px;
	box-shadow: 8px 0px 0px 1px rgba(17, 17, 17, 0.06);
}

.divider {
	height: 84px;
	background-image: url("/img/divider.svg");
	background-repeat: repeat-x;
	background-position: left center;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	margin-bottom: 16px;
	opacity: 0.3;
}

.rainbow {
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, var(--orange), var(--pink), var(--purple), var(--blue));
}

.banner {
	background-color: #ffffff;
	color: #000;
}

.float {
	position: absolute;
}

.float img {
	height: 150px;
	width: auto;
}

.dancing-computer {
	left: calc(50% + 400px);
}

@media only screen and (max-width: 620px) {
	body {
		line-height: 1.65rem;
	}

	main {
		width: 100%;
		overflow-x: hidden;
		margin-top: 24px;
		margin-right: 24px;
		margin-left: 0;
		padding-right: 24px;
		padding-left: 24px;
	}

	header {
		margin-bottom: 1.5rem;
	}

	header h1 {
		font-size: 1.5rem;
	}

	.divider {
		height: 48px;
	}

	.rainbow {
		height: 4px;
		background: linear-gradient(to right, var(--orange), var(--pink), var(--purple), var(--blue));
	}
}
