.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.text {
  padding: 10px;
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
}

.text span {
  font-family: Editorial New, sans-serif;
}

.email {
  font-family: Editorial New, sans-serif;
  text-decoration: none;
  color: var(--black);
}

.email:hover {
  color: var(--white);
}

.note {
  font-family: Editorial New, Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  padding: 10px 20px;
  color: rgba(0, 0, 0, 0.566);
}

.myProjects {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(6, 1fr);
}

.project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  padding-bottom: 25px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.project a {
  display: flex;
  justify-content: center;
}

.project img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  width: 180px;
  height: 120px;
  margin-top: 30px;
}

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

.project-title,
.project-description {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 16px;
  text-align: center;
}

.technology {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  margin-top: 10px;
}

/* ************* MEDIA  *************** */
@media screen and (min-width: 1800px) {
  .text,
  span,
  .email {
    font-size: 52px;
    line-height: 58px;
  }
}

@media screen and (max-width: 1530px) {
  .note {
    padding: 30px 10px 40px 10px;
  }
}

@media screen and (min-width: 1440px) {
  .text,
  span,
  .email {
    font-size: 42px;
    line-height: 48px;
  }
}

@media screen and (max-width: 1024px) {
  .text,
  span,
  .email {
    font-size: 26px;
    line-height: 28px;
  }

  .project {
    img {
      width: 130px;
      height: 90px;
    }
  }

  .project-title,
  .project-description {
    font-size: 14px;
    line-height: 14px;
  }
}

@media screen and (max-width: 780px) {
  * {
    margin: 7px;
  }

  .text {
    padding: 0px;
  }

  .myProjects {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .project {
    border-left: 2px solid var(--black);
    width: 100%;
    padding-top: 30px;
    margin: 0 10px !important;
    gap: 0px;

    img {
      width: 350px;
      height: 235px;
    }
  }
}

@media screen and (max-width: 440px) {
  .project {
    img {
      width: 100%;
      height: 160px;
    }
  }
}
