body { 
	padding: 0; margin: 0; 
	background-color: #000;
	min-width: 610px;
}

.container {
	height: 100vh;
}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 5em;
	position: relative;
	width: 60vw;
	min-width: 400px;
	min-height: 400px;
	padding: 5em;
	border: 2px solid #777;
	background-color: rgba(30, 30, 30, 0.85);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: arial;
	color: #FFF;
}
.title-text { 
	font-size: 3.5em;
	margin-bottom: 0;
}

.subtitle-text { 
	margin: 0;
	font-size: 2em;
	color: teal;
}
.description-text {
	margin-top: 0.5em;
}

.project-header { 
	font-size: 2em;
}

#starrysky {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
}

.theme-button {
	border: 1px solid teal;
	color: teal;
	background-color: transparent;
	padding: 1em;
	margin-top: 1em;
	text-decoration: none;
	display: inline-block;
}

.theme-button:hover {
	background-color: teal;
	color: #222;
	transition: all 0.2s;
}

.links-list {
	margin-top: 2em;
}

.project-card {
	border: 1px solid teal;
	margin-bottom: 1em;
	height: 150px;
	min-width: 300px;
}

.project-card {
	display: grid;
	grid-template-columns: 1fr auto;
	color: teal;
}
.project-card:hover {
	color: #333;
	background-color: teal;
	transition: all 0.2s;
}

.project-image {
	grid-column: 1;
	grid-row: 1 / 2;
	height: 150px;
	width: 150px;
}

.project-title {
	font-size: 1.5em;
	color: #FFF;
}

.project-content {
	padding: 1em;
}

.project-content span {
	display: inline-block;
	padding: 0.15em;
}

@media (max-width: 1360px){
	.container {
		min-height: 800px;
	}
	.grid-container {
		grid-template-columns: auto;
		grid-gap: 0;
	}
}
