* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1e1e;
    color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #2b2b2b;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.back-button {
    margin-bottom: 20px; /* Spacing between the back button and the content */
}

.back-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700;
    color: #2b2b2b;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button a:hover {
    background-color: #e6b800;
}

.project-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px; /* Adjusted for better spacing */
    color: #f5f5f5;
}

.project-title::after {
    content: "";
    display: block;
    width: 50px; /* Width adjusted to match screenshot */
    height: 4px;  /* Height adjusted to match screenshot */
    background-color: #ffd700;
    margin-top: 8px; /* Adjusted for spacing below the title */
    border-radius: 2px; /* Smooth rounded edges for a clean look */
    margin-bottom: 40px; /* Added distance between the bar and the image */
}

.project-image img {
    width: 100%;          /* Ensures the image takes full width of its container */
    height: auto;         /* Adjusts height proportionally to maintain aspect ratio */
    max-height: 600px;    /* Sets a maximum height for the image to ensure it's not too large */
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.project-description {
    margin: 30px 0;
    font-size: 1.2rem;
    text-align: left;
    color: #d1d1d1;
}


.project-description ul {
    list-style: disc; /* Use discs for bullets */
    padding-left: 20px; /* Indent the list */
    color: #d1d1d1; /* Text color for list items */
}

.project-description li {
    margin-bottom: 10px; /* Space between list items */
}


.project-skills h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffd700;
    text-align: left;
}

.project-skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-skills ul li {
    background-color: #3b3b3b;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    color: #f5f5f5;
}

.github-button {
    text-align: left;
    margin-top: 30px;
}

.github-button a {
    display: inline-flex; /* Use inline-flex for alignment */
    align-items: center; /* Align icon with text */
    padding: 12px 25px;
    background-color: #ffd700;
    color: #2b2b2b;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.2rem; /* Ensure text size is consistent */
    transition: background-color 0.3s ease;
}

.github-button a i {
    margin-left: 8px; /* Spacing between text and icon */
    font-size: 1.2rem; /* Match icon size to text size */
}

.github-button a:hover {
    background-color: #e6b800;
}

