main {
  section#works {
    background-color: #e9e2db;
    padding: 4rem;
    .widthContainer {
      h1 {
        text-align: center;
        margin-bottom: 4rem;
        text-transform: uppercase;
        font-weight: normal;
        font-size: 36px;
      }

      .cardList {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;

        .card {
          width: 300px;
          display: flex;
          flex-direction: column;
          align-items: center;

          img {
            margin-bottom: 2rem;
            width: 250px;
          }

          article {
            text-align: center;

            h1 {
              font-size: 19px;
              margin-bottom: 1em;
              font-weight: bold;
            }
            span {
              font-family: "TT Hoves Pro Trial", sans-serif;
            }
            p {
              text-align: justify;
              font-family: "TT Hoves Pro Trial", sans-serif;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 1270px) {
  .cardList {
    justify-content: center !important;
    gap: 40px;
  }
}
