/* General Styles */
body {
    background-color: #1e1e1e; /* Slightly darker gray background */
    color: #dcdcdc; /* Light gray text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background-color: #2b2b2b; /* Dark gray background for the nav bar */
    padding: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

nav ul li a {
    color: #dcdcdc; /* Light gray text */
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    background-color: #505050; /* Darker gray hover effect */
    border-radius: 5px;
}

/* About Me Section */
.about-me-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #2a2a2a; /* Medium-dark gray background */
    border-radius: 10px;
    text-align: center;
}

.about-me-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #dcdcdc; /* Light gray text */
}

.about-me-content {
    background-color: #3a3a3a; /* Darker gray background for content */
    padding: 20px; /* Added padding */
    border-radius: 10px;
    border: 1px solid transparent;
    transition: transform 0.5s ease, border-color 0.3s ease, color 0.3s ease;
}

.about-me-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc; /* Lighter gray for text */
}

/* Contributors Section */
.contributors-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #2a2a2a; /* Same background as About Me */
    border-radius: 10px;
    text-align: center;
}

.contributors-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #dcdcdc;
}

.contributors-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contributor-card {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contributor-card h3 {
    font-size: 24px;
    color: #87cefa; /* Light blue for contributor names */
    margin-bottom: 10px;
}

.contributor-card p {
    font-size: 16px;
    color: #cccccc; /* Light gray text for descriptions */
}
/* Contributor Card */
.contributor-card h3 {
    font-size: 24px;
    color: #87cefa; /* Light blue for contributor names */
    margin-bottom: 10px;
}

.contributor-card a {
    color: #87cefa; /* Light blue for the link */
    text-decoration: none;
}

.contributor-card a:hover {
    color: #1e90ff; /* Darker blue on hover */
    text-decoration: underline;
}
/* Contributor Card Image */
.circular-img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px auto;
    border-radius: 50%; /* Makes the image circular */
    border: 2px solid #C8B5B7; /* Updated border color */
}

.contributor-card h3, .contributor-card a {
    color: #C8B5B7; /* Updated text color */
}

.contributor-card a:hover {
    color: #A88A8C; /* A darker shade of the new color for hover */
    text-decoration: underline;
}





/* Footer */
footer {
    background-color: #2b2b2b; /* Dark gray background for footer */
    padding: 20px;
    text-align: center;
    color: #bbbbbb; /* Medium-light gray text */
}

footer p {
    margin: 0;
    font-size: 14px;
}
