* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #800080;
    color: #E6E6FA;
    padding: 15px 50px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #E6E6FA;
    text-decoration: none;
}

.logo {
    font-size: 1.5em;
}

/* Sections */
.section {
    padding: 80px 50px;
    text-align: center;
}

.home {
    background: #FAF9F6;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.home-text {
    max-width: 400px;
}

.home-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #800080;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #800080;
    color: #E6E6FA;
    text-decoration: none;
}

/* Projects */
.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project-card {
    background: #eee;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}
.project-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.project-card {
    overflow: hidden;
    background: #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}
}

/* Contact */
form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}

form input,
form textarea {
    margin: 10px 0;
    padding: 10px;
}

form button {
    padding: 10px;
    background: #333;
    color: white;
    border: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
}