/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f5;
    color: #333;
}

/* Section Styling */
section {
    padding: 40px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2 {
    text-align: center;
    color: #4a3f6c; /* Dark Purple */
}

/* About Me Section */
#about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 18px;
}
#links {
    text-align: center;
}

#links ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#links ul li {
    background-color: #6c5b7b; /* Light Purple */
    color: white;
    margin: 10px auto;
    padding: 10px;
    border-radius: 8px;
    max-width: 600px;
    font-size: 18px;
}

#links a {
    color: #f7f7f7;
    text-decoration: none;
}

#links a:hover {
    text-decoration: underline;
}
/* Projects */
#projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project {
    width: calc(33.333% - 40px); /* 3 columns layout with spacing */
    margin: 10px;
    padding: 20px;
    background-color: #6c5b7b; /* Light Purple */
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project h3 {
    margin-bottom: 10px;
}

.project a {
    color: pink;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

/* Certifications */
#certifications {
    text-align: center;
}

#certifications ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#certifications ul li {
    background-color: #4a3f6c; /* Dark Purple */
    color: white;
    margin: 10px auto;
    padding: 10px;
    border-radius: 8px;
    max-width: 600px;
    font-size: 18px;
}

#certifications a {
    color: #f7f7f7;
    text-decoration: none;
}

#certifications a:hover {
    text-decoration: underline;
}

/* Resume */
#resume {
    text-align: center;
}

#resume a {
    color: #4a3f6c; /* Dark Purple */
    text-decoration: none;
    font-weight: bold;
}

#resume a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    section {
        padding: 20px;
    }

    .project {
        width: calc(50% - 40px); /* 2 columns layout on smaller screens */
    }
}

@media (max-width: 480px) {
    .project {
        width: calc(100% - 40px); /* 1 column layout on very small screens */
    }
}
