* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

main {
  background-color: #d5d6ca;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.project {
  margin-top: 1rem;
  height: 15rem;
  width: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  background-color: #3f88c5;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s;

  .project-name {
    font-size: 25px;
    font-weight: bold;
  }
  .project-tech-stacks {
    font-weight: bold;
  }
}

.project:hover {
  background-color: #476782;
  box-shadow: 0.6rem 0.6rem;
}
