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

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
body .title {
  font-size: 3rem;
  margin: 4rem;
}
body .cardContainer {
  display: flex;
  flex-direction: row;
  width: 95%;
  margin: 0 auto;
}
body .cardContainer .projectReferences {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .cardContainer .projectReferences .projectImgContainer {
  text-decoration: none;
  position: relative;
  width: 23%;
  height: 20%;
  margin: 0.5rem;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}
body .cardContainer .projectReferences .projectImgContainer:hover {
  border: 1px solid black;
}
body .cardContainer .projectReferences .projectImgContainer:hover .projectImg {
  transform: scale(1.05);
}
body .cardContainer .projectReferences .projectImgContainer:hover .overlay {
  opacity: 1;
}
body .cardContainer .projectReferences .projectImgContainer .overlay {
  position: absolute;
  height: 40%;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30%;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
}
body .cardContainer .projectReferences .projectImgContainer .projectImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid black;
  border-radius: 10px;
  transition: transform 0.3s ease;
}/*# sourceMappingURL=style.css.map */