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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

header button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 5px;
}

header button:hover {
    background-color: #0056b3;
}

/* Section Styles */
.section {
    padding: 50px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
}

/* About Section */
#about p {
    font-size: 1.2em;
}

/* Skills Section */
#skills ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

#skills li {
    display: inline-block;
    margin: 10px;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Projects Section */
#projects .project-card {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#projects .project-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#projects .project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
}

/* Contact Section */
#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact input,
#contact textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}

#contact button:hover {
    background-color: #218838;
}

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