/* Reset some basic elements for consistency */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px; /* Set to your preferred maximum width */
    margin: 0 auto; /* This centers the container */
    width: 100%; /* This makes sure it takes up the full width up to the max-width */
    padding: 0 20px; /* Optional: adds some padding inside the container */
}


body {
    justify-content: center;
    max-width: 1200px;
    /* font-family: -apple-system, BlinkMacSystemFont, 
        "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, 
        Cantarell, "Helvetica Neue", sans-serif; */
    font-family: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace; /* Code-like font */
    line-height: 1.6;
    color: #333;
    /* background-color: #f4f4f4; */
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
}
main {
    padding: 10px;
}

#profile {
    max-width: 50%; /* Makes sure the image is not wider than its container */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Necessary for centering without text-align on the parent */
    margin: 0 auto; /* Centers the image */
    margin-bottom: 25px;
}

/* Navigation Styles */
nav {
    background-color: #444;
    color: #fff;
    display: flex;
    justify-content: left;
    padding: 10px 0;
    margin-bottom: 5px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-out;
}

nav ul li a:hover, nav ul li a:focus {
    color: #9f9f9f;
    /* color: #c7d5e0; */
}

/* Section Styles */
.project {
    margin-bottom: 20px;
    /* background: white; */
    background-color: #252526;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2 {
    /* color: #444; */
    /* color: #569cd6; */
    color: #007accef;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    margin: 1em 0 0.5em;
}

p {
    margin-bottom: 1em;
}

a {
    color: #4FC1FF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Button Styles */
.button {
    display: inline-block;
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease-out;
}

.button:hover {
    background: #777;
}

/* #contact {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} */

#contact h2 {
    color: #333;
}

#contact ul {
    list-style-type: none;
    padding: 0;
}

#contact li {
    margin-bottom: 10px;
}

/* #contact a {
    color: #007bff;
    text-decoration: none;
} */

/* #contact a:hover {
    text-decoration: underline;
} */



/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #444;
}

/* Responsive design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}


.green {
    color: #aff5b4;
}

.yellow {
    color: #e5c07b;
}

.light-blue {
    color: #4FC1FF;
}