.stack__desk {
	display: flex;
	justify-content: center;
}
@media only screen and (max-width: 500px) {
	.stack__desk {
		display: none;
	}
}

.stack__github {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 500px) {
	.stack__github {
		display: none;
	}
}

.slider {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(to left, black, grey);
	z-index: -1;
}

@media only screen and (max-width: 500px) {
	.slider {
		display: none;
	}
}

.about__me {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: whitesmoke;
	font-size: 1rem;
	padding: 10px;
}
@media only screen and (max-width: 650px) {
	.about__me {
		font-size: 1rem;
		background: linear-gradient(to left, black, grey);
	}
}
