/* Portfolio CSS */
.current-proj,
.past-proj {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1vw;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  box-sizing: border-box;
}
.port-block0 {
  width: 100%;
  height: 60vh;
  border-radius: 1rem;
  background-image: linear-gradient(45deg, pink, #afb1da);
  border-left: 2px;
  border-top: 2px;
  border-style: solid;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
.port-image0,
.linux-proj {
  width: 98%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px;
  border-style: solid;
  margin: 12px auto 0;
  margin-top: 0px;
  object-fit: cover;
}
.port-block0 h4 {
  margin: 10px;
}
.port-block0:hover {
  transform: scale(1.05);
}
.port-block0 h2 {
  border-bottom: 1px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-style: solid;
  margin-top: 0px;
  padding-top: 5px;
  background-color: #fff3;
}
.port-block0 > a {
  display: flex;
  justify-content: center; /* centers the button element */
  width: 100%;
  text-decoration: none;
}

.port-block0 button {
  margin-top: 8px; /* remove side push */
}
