/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set primary and secondary colors */
body {
    background-color: #fdfdfd; /* Kentucky white */
    color: #444444; /* Black */
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Header Styles */
header {
    background-color: #dddddd25; /* Kentucky white */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    text-align: right;
    padding-right: 20%;
}

nav ul li {
    display: inline;
    margin-left: 20px;
    padding-right: 20px; /* Added right padding */
}

nav ul li a {
    text-decoration: none;
    color: #4f4f4f; /* Black */
    font-weight: bold;
}

/* About Me Header */
.about-header {
    background-color: #0073e6; /* Kentucky blue */
    color: #ffffff; /* White */
    text-align: center;
    padding: 20px 0;
}

/* About Me Section */
.about-section {
    padding: 20px calc(25% - 20px); /* Adjust padding */
    text-align: center;
}

/* Styles for about images */
.about-images {
    display: flex;
    justify-content: center;
    margin-top: 50px; /* Adjust margin as needed */
}

.about-image {
    width: 30%; /* Each image is now 50% of the original 15% size */
    border-radius: 50%; /* Make images circular */
    overflow: hidden; /* Hide overflowing content */
}

.about-image img {
    width: 100%; /* Ensure the image fills its container */
    height: auto; /* Maintain aspect ratio */
}

footer {
    background-color: #dddddd;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 20px;
    position: relative; /* Set position to relative for positioning child elements */
}

footer .contact-info {
    flex: 1; /* Allow this section to grow and fill available space */
}

footer .year {
    flex: 1; /* Allow this section to grow and fill available space */
    text-align: right;
}

footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Center align horizontally and vertically */
}

footer .social-media img {
    width: 20px; /* 20% the size of the original */
    height: 20px; /* Maintain aspect ratio */
    border-radius: 50%; /* Make icons circular */
    margin-left: 10px; /* Space between email and icons */
}

.contact-info {
    font-size: 1.1rem;
    margin-right: 10px; /* Space between email and icons */
}

/* Ensure content is not hidden behind fixed header */
.with-padding {
    padding-top: 100px; /* Adjust based on the header height */
}

/* Skills Section */
.skills {
    margin-top: 50px;
    text-align: left;
    
}

.skills h2 {
    text-align: left; /* Left align the header */
    margin-bottom: 20px;
    font-family: "Oswald", sans-serif;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    font-family: "Source Serif 4", serif;
}

.skills-list li {
    width: calc(33.333% - 20px); /* Three columns */
    margin-bottom: 10px;
    padding-right: 20px; /* Add spacing between columns */
}