/* style.css */
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #f8f8f8;
    color: #333;
    padding: 20px 0;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header-content h1 span {
    color: #6e3667; /* Your preferred color */
}

.header-content p {
    font-size: 1.2em;
}

/* Main Content Styles */
.main-content {
    padding: 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 30px;
}

.intro-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #6e3667; /* Your preferred color */
}

/* Projects Section */
.projects-section {
    margin-bottom: 40px;
}

.projects-section h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 30px;
}

.contact-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #6e3667; /* Your preferred color */
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 10px;
    background-color: #f8f8f8;
    color: #333;
}
