body {
	background-color: black;
	/* background-image: url('../Images/chalkboard-background.jpg');
	background-repeat: no-repeat; */
	width: 100%;
	font-family: 'Gochi Hand', cursive;
	/* font-family: 'Shadows Into Light', cursive; */
	color: #fbf7f5;
	letter-spacing: 0.3em;
}

p {
	font-size: 24px;
	font-weight: bold;
	color: #e9c9d1;
}

a {
	color: #f5f9ad;
	text-decoration: none;
	border-bottom: 4px solid #f5f9ad;
	border-radius: 5px;
}

/* Heading */
.heading {
	display: inline;
	text-align: center;
	font-size: 30px;
}

/* Info from GibHub profile */
.profile-info {
	width: 70%;
	margin: 10px auto;
	text-align: center;
	color: #bcdf8a;
}

.profile-image {
	width: 28px;
	height: 28px;
	border-radius: 25px;
	bottom: 0;
}

.profile-name {
	font-size: 28px;
}

/* Projects/repos */

.repo-card {
	width: 80%;
	margin: 10px auto;
	padding: 5px;
	border: 10px solid rgba(255, 255, 255, 0.8);
	border-image: url('https://www.unicefusa.org/sites/default/files/answer-box.png')
		25;
	padding: 5px;
}

/* grid */
/* responsive (mobile first) */

@media (min-width: 768px) {
	.projects-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: max-content;
	}

	.repo-card {
		width: 90%;
	}
}

@media (min-width: 1200px) {
	.profile-name {
		font-size: 32px;
	}

	.projects-container {
		grid-template-columns: repeat(4, 1fr);
	}

	.repo-card {
		width: 80%;
	}

	p {
		font-size: 28px;
	}
}
