/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color and text color */
body {
    /* background-color: #f7f7f7;*/
	background-color: #fdf;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Style the header and navigation */
header {
    background-color: #313;
    color: #dd;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

/* Style the main sections */
section {
    padding: 40px 20px;
}

/* Style portfolio items */
.portfolio-item {
    margin: 20px;
}

.portfolio-item img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.avatar {
    float: left; /* To make it appear on the left side of the header */
}

.avatar img {
    width: 50px; /* Adjust the width as needed */
    height: 50px; /* Adjust the height as needed */
    border-radius: 50%; /* To make it round (if it's a circular avatar) */
	margin-left: 20px;
	margin-right: 20px;
}
.portfolio-item {
    margin: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: inline-block; /* Display as inline-block to allow them to flow next to each other */
    width: calc(33.33% - 40px); /* Control the width; in this case, 3 items per row */
    box-sizing: border-box; /* Include padding and border in the total width */
}

/* Clear floats after every third item to ensure they wrap properly */
.portfolio-item:nth-child(3n + 1) {
    clear: both;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    max-width: 100%;
	height: auto;
}

.portfolio-item p {
    margin-top: 10px;
}

