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

p {
  margin: 0;
  padding: 0;
}

.contact-wrapper {
  text-align: center;
}

.project-images {
  color: #fff;
  margin-top: 80px;
  text-align: center;
}

.about-me-paragraph :nth-child(3) {
  max-width: 100% !important;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 50px;
  padding: 0;
  margin-top: 35px;
}

.project {
  background-color: rgba(20, 20, 20, 0.6);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
}

.project:hover img {
  transform: scale(1.05);
}

.project img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.project .description {
  padding: 8px;
}

.project .description p:first-child {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease-in-out;
  height: 45px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.project:hover a {
  color: red;
}

.project-desc {
  font-size: 14px;
  text-align: start;
}

.project:hover .project-desc {
  color: #fff;
}

.tech-tool-container {
  margin-top: 80px;
}

.ttc__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.ttc__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 50px;
}

@media screen and (max-width: 1023px) {
  .project-images {
    padding: 0 20px;
  }

  .projects-grid,
  .ttc__cards {
    gap: 30px;
  }
}

@media screen and (max-width: 820px) {
  .projects-grid,
  .ttc__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .projects-grid,
  .ttc__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .project .description p:first-child {
    font-size: 16px;
    height: auto;
  }

  .project-desc {
    font-size: 12px;
  }
}
