body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

nav {
    width: 100%;
    background-color: #F1F1F1;;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #1F1F1F;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #F1F1F1;
}


.projects-container {
    position: relative;
    width: 100vw;
    height: 300vh; /* Make the height larger than the viewport for scrolling */
}

.project {
    position: absolute;
    width: 200px; /* Adjust the width as needed */
    text-align: center;
    box-sizing: border-box;
}

.project img {
    width: 100%;
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    cursor: pointer;
}

.project h1 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.project h2 {
    font-size: 1em;
    margin: 0.25em 0;
}
.taskbar {

	display: flex;

	width: 100%;

	flex-direction: row;

	justify-content: flex-start;

	align-items: center;

	padding: 2% 6%;

	color: #1F1F1F;

}
