body {
	margin: 0;
	background: linear-gradient(#01000f, #011230);
	color: #FAF9F6;
}

html {
	/* For scrolling past the edge: */
	background: #011230;
}

.title {
	text-align: center;
}

.header {
	display: block;
	.key-image {
		position: relative;
		top: 0;
		left: 0;
		width: 100vw;
	}
	.play-button {
		--height: 100px;
		--width: 200px;
		position: absolute;
		left: calc(50% - var(--width)/2);
		/* Maybe there's a better way, but we calculate the key art height from its aspect ratio: */
		top: calc(100vw/1.76 * 0.5 - var(--height)/2);
		height: var(--height);
		width: var(--width);
		text-align: center;
		background-color: white;
		align-content: center;
	}
}

.content {
	margin-left: 5%;
	margin-right: 5%;
}

.header-split {
	padding-bottom: 50px;
}

.content {
	display: grid;
	justify-items: center;
}
.buy-capsule {
	flex: 0;
	--width: min(100%, 1000px);
	width: var(--width);
	height: 200px;
	border: none;
}

.screenshots-grid {
	display: grid;
	grid-template-columns: repeat(2, auto);
	--img-width: 40vw;
	justify-content: center;
	gap: 10px;

	img {
		width: var(--img-width);
		aspect-ratio: 1920 / 1080;
	}
}

.footer {
	margin-top: 2%;
	margin-bottom: 2%;
	text-align: center;
}

.socials {
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style-type: none;
	justify-content: center;
	gap: 10px;
}