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

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

header {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 40px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}
#about .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#about .profile-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

#about .about-details {
    max-width: 600px;
}

#about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#projects h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.project-grid {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin-bottom: 30px;
}

.project-card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.project-info {
    padding: 15px;
}

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

#contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

#contact .contact-info {
    list-style-type: none;
    text-align: center;
}

#contact .contact-info li {
    margin: 10px 0;
}

#contact .contact-info a {
    color: #333;
    text-decoration: none;
}

#contact .contact-info a:hover {
    text-decoration: underline;
}


footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px;
}


@media (max-width: 768px) {
    .project-grid {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        width: 80%;
    }

    #about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #about .profile-photo {
        width: 150px;
        height: 150px;
    }
}

