@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

body {
	font-family: 'Pixelify Sans', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	background-color: #000;
	color: white;
}

#nav-bar {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#c_text {
	color: #969696;
	text-shadow:
		0 0 10px #dedede,
		0 0 20px #dedede,
		0 0 40px #dedede,
		0 0 80px #dedede,
		0 0 120px #dedede;
}

#java_text {
	color: #ff852e;
	text-shadow:
		0 0 10px #ff7919,
		0 0 20px #ff7919,
		0 0 40px #ff7919,
		0 0 80px #ff7919,
		0 0 120px #ff7919;
}

#js_text {
	color: #ffcc26;
	text-shadow:
		0 0 10px #ffc400,
		0 0 20px #ffc400,
		0 0 40px #ffc400,
		0 0 80px #ffc400,
		0 0 120px #ffc400;
}

#php_text {
	color: #856cc4;
	text-shadow:
		0 0 10px #8e61ff,
		0 0 20px #8e61ff,
		0 0 40px #8e61ff,
		0 0 80px #8e61ff,
		0 0 120px #8e61ff;
}

#python_text {
	color: #80aeff;
	text-shadow:
		0 0 10px #4e7ac7,
		0 0 20px #4e7ac7,
		0 0 40px #4e7ac7,
		0 0 80px #4e7ac7,
		0 0 120px #4e7ac7;
}

#go_text {
	color: #42c3e5;
	text-shadow: 
		0 0 10px #00f,
        0 0 20px #00f,
        0 0 40px #00f,
        0 0 80px #00f,
        0 0 120px #00f;
}

.container {
	max-width: 600px;
	margin: 0 auto;
	background-color: #000;
	border: 3px solid #fff;
	margin-top: 20px;
}

.container-two {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px;
}

.nav {
	background-color: #000;
	overflow: hidden;
	border-bottom: 3px solid #fff; border-top: 3px solid #fff;
	position: relative;
}

.nav a {
	float: left;
	display: block;
	color: #fff;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 16px;
	transition: .2s;
}

.info {
	margin: 15px;
	font-size: 16px;
}

.contact-me-buttons {
	align-items: center;
	justify-content: center;
	display: flex;
}

.contact-me-buttons a {
	border: 3px solid #fff;
	padding: 5px;
	margin: 5px;
	color: white;
	text-decoration: none;

	display: flex;
	align-items: center;
	gap: 5px;
}

.contact-me-buttons a img {
	margin-right: 5px;
}

@media (max-width: 450px) {
	.container {
		padding: 10px;
	}
}