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

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
    overflow-y: hidden;
}


body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.project-container {
  height: 100vh;
  width: 100vw;
  /* background-color: #f0f0f0; */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top:150px; */
}

@media only screen and (max-width: 600px) {
.project-container {
  height: 500px;
  width: 100vw;
  /* background-color: #f0f0f0; */
  padding: 40px;
  /* padding-top:550px; */
}





}


.project-image {
  width: 400px;
  height: 300px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;   /* 👈 this prevents squishing */
  object-position: center; /* 👈 optional: keeps crop centered */
}

@media only screen and (max-width: 600px) {

.project-image {
  width: 200px;
  height: 150px;
}

}




.project-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #333;
}

.project-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
}

.tech-stack {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
    position:relative;
}


@media only screen and (max-width: 600px) {

.tech-stack {
display: none;
}
}


.chip {
  background-color: #e0e0e0;
  color: #333;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.chip:hover {
  background-color: #ccc;
  cursor: default;
}

.read-more-button {
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #f44ee8;
}
