* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #111;
	color: white;
	font-family: 'Inter', sans-serif;
}


h1,
h2,
.logo,
nav {
	font-family: 'Press Start 2P';
}


#crt {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 999;
	background: linear-gradient(rgba(255,255,255,.03) 50%, transparent 50%);
	background-size: 100% 4px;
}

.hidden {
	display: none;
}

#boot-screen {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, #333, #000);
}

.boot-box {
	text-align: center;
}

.boot-box h1 {
	font-size: 40px;
	margin-bottom: 40px;
}

.loading {
	margin: 30px;
	color: #209cee;
}

main {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 12px;
	margin-left: 20px;
}

.hero {
	display: flex;
	gap: 60px;
	align-items: center;
	min-height: 70vh;
}

.hero-image img {
	width: 220px;
	image-rendering: pixelated;
}

.hero-text {
	max-width: 600px;
}

section {
	margin-bottom: 50px;
}

.nes-container.with-title.black-bg>.title{
	background-color: #000;
}

.skills {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

@media(max-width:768px) {
	header,
	.hero {
		flex-direction: column;
		text-align: center;
	}

	nav a {
		display: block;
		margin: 15px;
	}
}
