/*
	Theme Name: 	Dylonius.GitHub.io - Main Theme
	Theme URI: 		https://thedylonius.github.io
	Author: 		TheDylonius
	Author URI: 	https://thedylonius.github.io
	Description:	This is the main theme that I will use within my GitHub.io pages.
	Version: 		1.00B
	License: 		N/A
	License URI: 	N/A
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #333;
}

.container {
	width: 95%;
	max-width: 1100px;
	margin: auto;
	padding: 0 20px;
}

header {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
}

	header h1 {
		font-size: 2.5em;
		margin-bottom: 5px;
		font-weight: 600;
		letter-spacing: 0.5px;
	}

	header p {
		font-size: 1.2em;
		color: #555;
	}

p {
	margin-bottom: 10px;
}

section {
	padding: 0px 0;
	margin-bottom: 20px;
}

    section h2 {
		font-size: 2em;
		margin-bottom: 0px;
		color: #333;
	}

ul {
	margin-top: 10px;
	margin-left: 25px;
	margin-bottom: 25px;
	list-style-type: disc;
}

	ul li {
		margin-bottom: 10px;
	}

.job {
	margin-bottom: 20px;
}

footer {
	background: #f4f4f4;
	color: #222;
	text-align: center;
	padding: 30px 20px;
	border-top: 1px solid #ddd;
	font-size: 1.1em;
	font-family: Helvetica, sans-serif;
}

	footer p {
		margin: 0;
		color: #555;
	}

/* Navigation Bar Styles */
.topnav {
	background-color: #333;
	display: flex;
	justify-content: space-around;
	overflow: hidden;
	width: 100%;
}

	.topnav a {
		flex: 1;
		float: left;
		display: block;
		color: #FFFFFF;
		text-align: center;
		padding: 1%;
		text-decoration: none;
		font-size: 18px;
		font-family: helvetica;
	}

		.topnav a:hover {
			background-color: #ddd;
			color: black;
		}

		.topnav a.active {
			background-color: #04AA6D;
			color: white;
		}

	.topnav .icon {
		display: none;
	}

#profile-image {
	margin-top: 40px;
	padding: 20px 0;
	text-align: center;
}

.profile-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.profile-text {
	width: 60%;
	padding-right: 20px;
}

.profile-contact-item {
	display: inline-block;
	margin: 8px 12px 0 0;
	font-size: 1em;
}

	.profile-contact-item a {
		color: #04AA6D;
		text-decoration: none;
	}

		.profile-contact-item a:hover {
			text-decoration: underline;
		}

.profile-img-container {
	width: 30%;
	max-width: 220px;
}

.profile-img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #333;
}

#profile-image h2 {
	font-size: 1.5em;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.profile-content {
		flex-direction: column;
		text-align: center;
	}

	.profile-text, .profile-img-container {
		width: 100%;
		padding: 0;
	}

	.profile-text {
		margin-bottom: 20px;
	}

	.profile-contact-item {
		display: block;
		margin-bottom: 10px;
	}
}

@media (max-width: 600px) {
	.topnav a {
		font-size: 16px;
		padding: 10px 5px;
	}
}