* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #fafafa;
  max-width: 100%;
}
body {
  background-color: #121212;
  color: #fafafa;
  /* height: 100vh; */
}
.head-container {
  text-align: center;
  margin: 2rem 0;
  height: 4rem;
}
.parent-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.project {
  width: 100%;
  max-width: 24rem;
  margin: 1rem 1.5em;
  text-align: center;
  background-color: #252525;
  height: 34rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  padding-bottom: 1rem;
}
.project:hover {
  transform: scale(1.02);
}
a {
  text-decoration: none;
  color: #fafafa;
}
.project img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}
.project h2 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #fafafa;
}
