* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: url(bg%204.jpg);
    background-size: 900px;
    background-repeat: repeat;
  background-position-x: right;
  color: #000;
  filter:greycale(100%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
   border:1px solid #000;
  background-color: black;
  color:#ffffff;
  padding:40px;
  font-size: 20px;
}

.logo {
  font-size: 40px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
}

nav a:hover {
  color: #00debf;
}

.side {
  font-weight: 300;
  color: #888;
}

.project h1 {
  font-size: 25px;
  font-weight:600;
  margin-bottom: 40px;
  padding:40px;
  color: #7f7f7f
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
  padding:40px;
  
}


.img-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
 transition: filter 0.3s ease, transform 0.3s ease;
}
.img-item img:hover {
  filter: invert();/* color on hover */
  z-index: 1;
}
/* Layout similar to your screenshot */
.large {
  grid-column: 1 / span 3;
  filter:invert();
}

.top-right {
  grid-column: 5 / span 2;
  margin-top: -80px;
  filter:invert();
}

.bottom {
  grid-column: 2 / span 4;
  margin-top: 60px;
filter:invert();
}

.bottom-left {
  grid-column: 5 / span 3 ;
  margin-top: 80px;
  filter:invert();
  

}
.right {
  grid-column: 1 / span 3;
margin-top: -360px;
 filter:invert();

}
a {text-decoration: none;
  color: white;
}