/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body */
body {
    background-color: #45474B; /* Dark grey */
    color: #F5F7F8;
    line-height: 1.6;
    font-size: 16px;
    padding: 20px;
    margin: 0;
}

/* Container */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 3em;
    background-color: #495E57; /* Slightly lighter dark green */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Headings */
h1, h2, h3 {
    color: #F5F7F8;
    margin-bottom: 10px;
    border-bottom: 2px solid #F4CE14; /* Orange accent */
    padding-bottom: 5px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

/* Section Titles */
.section-title {
    color: #F4CE14; /* Bright yellow for section titles */
    margin-top: 30px;
}

/* Links */
a {
    color: #F4CE14; /* Bright yellow */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-left: 2em;
    padding-left: 2em;
}

ul li, ol li {
    margin-bottom: 8px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 20px;
}

.contact-info p{
    display: inline-block;
    color: #F4CE14; /* Bright yellow */
    margin-right: 10px;
}

/* Button (if needed) */
button {
    background-color: #F4CE14; /* Bright yellow */
    color: #495E57; /* Very dark green for contrast */
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #a68c0d; /* Darker yellow */
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Profile Image */
.profile-image img {
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Profile Details */
.profile-details {
    color: #F5F7F8;
}

/* Bio Text */
.bio {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Social Links */
.social-links a {
    color: #F4CE14; /* Orange */
    margin-right: 15px;
    text-decoration: none;
    font-size: 16px;
}

.social-links a:hover {
    text-decoration: underline;
}



@media only screen and (max-width: 1000px) {
	.container {
		padding: 10%;
	}
}
