html body {
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	font-family: monospace;
	margin: 0;
	box-sizing: border-box;
	color: white;
	padding: 7vh;
}

@media (min-width: 768px) {
	html body {
		padding: 7vh 7vw;
	}
}

#grid {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(0, 2fr);
	justify-items: center;
	align-items: center;
	row-gap: 7vh;
	column-gap: 0;
}

@media (min-width: 768px) {
	#grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr 2fr;
		row-gap: 7vh;
		column-gap: 7vw;
	}
}

#grid img {
	height: 100%;
	width: auto;
	cursor: pointer;
}

@media (min-width: 768px) {
	#grid img {
		width: 100%;
		height: auto;
	}
}

#name {
	font-size: 8vw;
}

@media (min-width: 768px) {
	#name {
		grid-column-start: 1;
		grid-column-end: 4;
	}
}

#links a img {
	width: 100%;
	height: auto;
}

@media (min-width: 768px) {
	#links a img {
		width: 100%;
		height: auto;
	}
}
