/* General Styles */
body {
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
}

.portfolio-item {
    display: -webkit-flex; /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

h1 {font-size:3.0em}

.title {
    margin: 0;
}

.main-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-item {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.project-image {
    -webkit-flex: 0 0 40%; /* Safari */
    flex: 0 0 40%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.project-description {
    -webkit-flex: 1 0 60%; /* Safari */
    flex: 1 0 60%;
    padding: 20px;
}

.project-title {
    margin-top: 0;
    color: #b3b4b4;
}

footer {
    background-color: #0866ff;
    color: white;
    text-align: center;
    padding: 12px 0px 4px 0px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-item {
        flex-direction: column;
    }

    .project-image,
    .project-description {
        width: 100%; /* Ensure compatibility */
        flex: none; /* Avoid flex shrinking issues */
    }
}


a {
	text-decoration:none;
	color: #0866ff;
	}
	
input,textarea {width:294px;}

textarea {height:150px;}	

section.section-contact {
	display: flex; 
	justify-content: center; 
	padding:30px 0px 50px 0px;
}

p.project-details {
	padding-left:20px;
	padding-right:20px;
	}