        body {
			margin: 0;
			padding: 0;
			font-family: sans-serif;
		}

		header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 18px;
			background-color: #375A7F;
 		    border-bottom: 1px solid #000;
            color: #fff; 
		}

		nav a {
			color: #fff;
			text-decoration: none;
			margin: 0 20px;
		}

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

		section {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			height: 100vh;
		}

		h1 {
			font-size: 3rem;
			margin-bottom: 20px;
			text-align: center;
		} 

		p {
			font-size: 1.5rem;
			margin-bottom: 20px;
			text-align: center;
			max-width: 600px;
		}

		.social-links {
			display: flex;
			justify-content: center;
			align-items: center;
			margin-bottom: 20px;
		}

		.social-links a {
			display: inline-block;
			margin: 0 10px;
			font-size: 2rem;
			color: #333;
		    background-color: #fff;
			border-radius: 50%;
		    padding: 10px; 
			transition: all 0.3s ease;
		} 

		.social-links a:hover {
			transform: scale(1.1);
		}

		footer {
			background-color: #375A7F; 
			color: #fff;
			padding: 18px;
			text-align: center;
		} 

		.profile-image {
			width: 250px;
			height: 250px;
			border-radius: 50%;
			object-fit: cover;
			margin-bottom: 20px;
		}

		@media only screen and (max-width: 768px) {
			.profile-image {
				width: 200px;
				height: 200px;
			}
		}

		@media only screen and (max-width: 480px) {
			.profile-image {
				width: 150px;
				height: 150px;
			}
		} 
 	
        form {
            max-width: 700px; 
            margin: 0 auto;
        }

        label {
            display: block;
            margin-bottom: 10px;
        }

        input,
        textarea {
            display: block;
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
            margin-bottom: 20px;
            box-sizing: border-box;
        }

        input:focus,
            textarea:focus {
            outline: none;
            border-color: #030033;
        }

        button {
            background-color: #030033;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #222;
        }

        @media screen and (max-width: 768px) {
            form {
            max-width: 500px;
            }
        }

        @media screen and (max-width: 480px) {
        form {
            max-width: 400px;
            }
        }

.project {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 20px;
}

.project img {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin-bottom: 20px;
}

.project h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}

.project p {
	max-width: 800px;
	margin-bottom: 20px;
	text-align: center;
}

.button {
	background-color: #030033;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button:hover {
	background-color: #222;
}

@media screen and (max-width: 768px) {
	.project img {
		max-width: 300px;
	}

	.project h2 {
		font-size: 1.5rem;
	}

	.project p {
		max-width: 400px;
	}

	.button {
		padding: 8px 16px;
	}
}

@media screen and (max-width: 480px) {
	.project img {
		max-width: 200px;
	}

	.project h2 {
		font-size: 1.2rem;
	}

	.project p {
		max-width: 300px;
	}

	.button {
		padding: 6px 12px;
	}
}
 