header {
    /*background-color: hwb(0 28% 67%);  Change to your desired color */
    background-color: hwb(213 21% 37%); /*Change to your desired color */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 2em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #4c8cd6; /* Slightly lighter or different color */
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #81C784; /* Even lighter color on hover */
}


footer {
    background-color: #333; /* Dark background for the footer */
    color: white; /* Light text color for contrast */
    text-align: center; /* Center the text */
    padding: 20px 0; /* Add some padding above and below the text */
    font-size: 0.9em; /* Adjust the font size as necessary */
}

footer p {
    margin: 0; /* Remove default margin from the paragraph */
}


.about-container {
    display: flex;
    align-items: center; /* This will vertically align items if the text is shorter than the image */
    margin-bottom: 20px; /* Add space below the section */
}

.about-img {
    flex: 0 0 auto; /* Do not grow, do not shrink, and base size on the image's actual size */
    margin-right: 20px; /* Add space between the image and the text */
    width: 150px; /* You can set this to whatever you like */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: rounds the corners of the image */
}

.about-text {
    flex: 1; /* Take up the remaining space */
    text-align: left; /* Align the text to the left */
}

.about-icons {
    margin-top: 10px;
}

.about-icons a {
    text-decoration: none;
    color: #333; /* Icon color */
    margin-right: 10px; /* Space between icons */
    font-size: 24px; /* Icon size */
}

.about-icons a:hover {
    color: #0077b5; /* LinkedIn color, for example, on hover */
}


section {
    width: 1000px; /* Replace with the fixed width you want */
    margin-left: auto; /* Centers the section within its container */
    margin-right: auto; /* Centers the section within its container */
    margin-bottom: 80px;
}

h2 {
    border-bottom: 2px solid #cccccc; /* Sets a grey line */
    padding-bottom: 10px; /* Adds some space between the title and the line */
    margin-bottom: 20px; /* Adds some space between the line and the next content */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6
}

