
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #333 !important;
  color: #fff !important;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #ddd;

  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

main {
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
}

.hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: 20px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;

    text-align: center;
    padding: 0.3rem 0;
    background: #333;
    color: #fff;
    border-top: 1px solid #ccc;
}

.additional-images img {
    width: 45%;
    margin: 2.5%;
    display: inline-block;
}

p, h2, h3 {
    margin-bottom: 15px;
}

article {
    margin-bottom: 30px;
}

/* Assign distinct background colors to project rows */
.project:nth-child(1) {
    background-color: #f0f8ff; /* AliceBlue */
}

.project:nth-child(2) {
    background-color: #fdfd96; /* Pastel Yellow */
}

.project:nth-child(3) {
    background-color: #dcd0ff; /* Lavender Purple */
}

.project:nth-child(4) {
    background-color: #ffcccb; /* Light Pink */
}

.project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.project img {
    width: 40%; /* Adjusted image size */
    height: auto;
    margin-right: 80px;
    border-radius: 5px;
}

.project:nth-child(even) img {
    margin-left: 80px;
    margin-right: 0;
}

.project-text {
    width: 55%;
}

/* Remove underline for links in project rows */
.project-link {
    text-decoration: none;
    color: inherit;
}

.project-link:hover {
    text-decoration: none;
}
