/* Reset some default styles */
body, h1, h2, h3, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* General styles */
body {
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.container{
    text-align:center;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin-right:10px;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* Projects Section */
/* #projects {
    padding: 20px;
    text-align: center;
} */
#projects{
    background-color: #333;
}
#projects h2{
      color:white;
}


.project-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}
.project a{
    text-decoration:none;
    color:black;
    font-weight: bolder;
    margin-bottom:15px;
}



.project {
    background-color: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

#contact input, #contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
} 

#contact button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#contact button:hover {
    background-color: #555;
}
.social-links {
    text-align: center;
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
}

.social-links .btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.social-links .linkedin {
    background-color: #0077b5;
}

.social-links .linkedin:hover {
    background-color: #005582;
}

.social-links .github {
    background-color: #333;
}

.social-links .github:hover {
    background-color: #000;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    /* padding: 20px 0; */
}

