html, body {
  background-color: #aaa;
  text-align: center;
}

#header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  background-color: #999;
}

#main {
  position: absolute;
  top: 50px;
  left: 0px;
  width: 100%;
  height: calc(100% - 150px);
  background-color: #f99;
}

#projects {
  position: absolute;
  width: 500px;
  height: 400px;
  top: 20px;
  left: calc(50% - 250px);
}

#projects > span {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	overflow-y: scroll;
}

.projectModrinth{
	display: grid;
	background: #fff;
	grid-template-areas:
		"icon name"
		"icon desc";
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	border-radius: 16px;
	padding: 8px;
	gap: 8px;
}

.projectIcon {
	grid-area: icon;
	border-radius: 8px;
	width: 128px;
	height: 128px;
}

.projectName {
  grid-area: name;
  display: flex;
  text-decoration: none;
  gap: 8px;
	font-size: 22px;
	color: #000;
	margin-block: 0;
}

.projectDescription {
	grid-area: desc;
	margin: 4px;
}

#footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background-color: #888;
}
