/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}


/* Header */

header {
    background: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
    color: #f1c40f;
    transform: scale(1.1);
}


/* Projects Section */

#projects {
    background: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

#projects h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1abc9c;
}

.project {
    background: #ecf0f1;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-10px);
}

.project h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1abc9c;
}

.project p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.project-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-img:hover {
    transform: scale(1.05);
}


/* Footer */

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    font-size: 1rem;
}