body {
    font-family: Arial, sans-serif;
    background-color: #161516;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}
* {
    box-sizing: border-box;
  }
html {
    scroll-behavior: smooth;
}
header, main, footer {
    text-align: center;
    padding: 100px;
    margin-bottom: 20px;
}
footer {
    font-size: 0.8em;
}
.navbar {
    background-color: #333;
    text-align: center;
    position: fixed;
    padding: 0.8rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.navbar a {
    float: none;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.about-text {
    flex-grow: 1; /* This makes the text container grow to fill available space */
    text-align: center; /* This centers the text within the text container */
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
}
.project-container {
    display: flex;
    background-color: #1b4958;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px; /* Add this line */
    flex: 1;

}
.project-text {
    flex-grow: 1; /* This makes the text container grow to fill available space */
    text-align: center; /* This centers the text within the text container */
    font-size: 20px;
    margin-left: 30px;
}
.project-role {
    margin-left: 50px; /* Adjust the value as needed */
    text-align: center;
    box-sizing: border-box;
}
.project-image {
    width: 400px;
    height: auto;
    object-fit: cover;
}
.skills-section {
    background-color: #1f2223; /* Light grey background */
    padding: 10px; /* Reduced padding around the section */
    margin-top: 100px; /* Reduced space above the section */
}
.skills-container { /* Container for skill groups to apply Flexbox */
    display: flex;
    justify-content: space-around; /* Distribute space evenly around the items */
    flex-wrap: wrap; /* Allow items to wrap to the next line on small screens */
}
.skills-group {
    margin-bottom: 10px; /* Reduced space between groups */
    flex-basis: 45%; /* Each group will take up roughly half the container width, adjust as needed */
}
.skills-group h3 {
    color: white; /* Dark text for the group title */
    text-decoration: underline; /* Underline the group title */
    font-size: 16px; /* Smaller font size for group titles */
}
.skills-list {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}
.skills-list li {
    background-color: #26292b; /* Slightly darker grey for list items */
    margin: 2px 0; /* Reduced space between list items */
    padding: 5px; /* Reduced padding inside list items */
    border-radius: 5px; /* Rounded corners for list items */
    font-size: 14px; /* Smaller font size for list items */
}

.linkbar {
    background-color: #333;
    color: #ea00ff !important; /* Add this line */
    padding: 0.8rem;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.linkbar a {
    color: #8400ff; /* Add this line */
    font-size: 22px;
    padding: 10px;
    text-decoration: none;
}
