* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

header {
    background: #333;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#home {
    height: 100vh;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#home .home-content h1 {
    font-size: 2.5rem;
}

#home .home-content span {
    color: #3498db;
}

#home .home-content p {
    margin: 20px 0;
}

#home .btn {
    padding: 10px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#about {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#projects {
    padding: 50px;
    background: #f4f4f4;
}

#projects h2 {
    text-align: center;
    margin-bottom: 40px;
}

.projects-container {
    display: flex;
    justify-content: space-around;
}

.project {
    width: 30%;
    text-align: center;
}

.project img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#contact {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contactForm .btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
