@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:wght@300;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: rgb(248, 239, 222);
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 5rem;
  p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    word-wrap: break-word;
    max-width: 60ch;
    text-align: center;
    margin-top: 1rem;
  }
  span.txt1 {
    font-size: clamp(1.7rem, 4.5vw, 2.2rem);
    font-weight: 100;
  }
  span.txt2 {
    font-size: clamp(1.7rem, 4.5vw, 2.2rem);
    font-weight: 600;
  }
}

.cards {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-left: 10rem;
  margin-right: 10rem;
  flex-wrap: wrap;
  #column_2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .card1,
  .card2,
  .card3,
  .card4 {
    background: white;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    img {
      width: 100px;
      height: 100px;
      margin-top: 1.5rem;
      align-self: flex-end;
    }
  }
  .card1 {
    border-top: 4px solid hsl(0, 78%, 62%);
  }
  .card2 {
    border-top: 4px solid hsl(180, 62%, 55%);
  }
  .card3 {
    border-top: 4px solid hsl(34, 97%, 64%);
  }
  .card4 {
    border-top: 4px solid hsl(212, 86%, 64%);
  }
}
