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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}
.container{
    max-width: 980px;
    margin: 0 auto;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.logo h1 {
    font-size: 24px;
}

.menu .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

.intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #e6f7ff;
}

.intro-text {
    max-width: 50%;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: bold;
}

.intro-text p {
    margin-top: 10px;
}
.intro-image {

}
.intro-image img {
    width: 100%;
    max-width: 300px;

}

.projects {
    padding: 20px;
}

.projects h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.project-thumbnails {
    display: flex;
    gap: 20px;
}

.thumbnail {
    width: 300px;
    height: 300px;
    background-color: #a5e2e8;
    border-radius: 8px;
}

.about {
    padding: 20px;
    background-color: #e6f7ff;
    text-align: center;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between;
    align-items: center; */
}

.about h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about p {
    /* max-width: 50%; */
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.technologies {
    padding: 20px;
    height: 200px;
}

.technologies h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.tech-icons {
    
    text-align: center;
}

.tech-icons img {
    margin-top: 20px;
    width: 450px;

    
}

.contact {
    padding: 20px;
    background-color: #e6f7ff;
    
}

.contact form {
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea{
    height: 200px;
}

.contact button {
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

/* Responsive Design */

@media (max-width: 768px) {
    .intro-text, .about p {
        max-width: 100%;
        text-align: center;
    }

    .intro, .about {
        flex-direction: column;
        text-align: center;
    }

    .intro-image, .about-image {
        margin-top: 20px;
    }

    .project-thumbnails {
        flex-direction: column;
        align-items: center;
    }

    .thumbnail {
        width: 80%;
        margin-bottom: 20px;
    }
}
