:root {
  --primary-color: #232323;
  --normal: 300;
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  background-color: var(--primary-color);
}

body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.title {
  margin-top: 5%;
  text-align: center;
}
.title img {
  width: 420px;
  margin-bottom: 20px;
}

h1 {
  font-weight: var(--normal);
  font-size: 40px;
  line-height: 40px;
  margin: 0;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1091px;
}

.project {
  height: 328px;
  width: 328px;
  background-size: cover;
  border-radius: 8px;
  text-align: center;
}
.project:hover {
  box-shadow: rgba(255, 255, 255, 0.5) 0 0 5px 3px;
}
.project.disable {
  pointer-events: none;
}

@media only screen and (max-width: 750px) {
  .title {
    margin-top: 10%;
  }
  .title img {
    width: 275px;
  }
  h1 {
    font-size: 16px;
    line-height: 16px;
  }
  .project-container {
    gap: 10px;
  }
  .project {
    height: 150px;
    width: 150px;
  }
}

/*# sourceMappingURL=style.css.map */
