@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: hsl(0, 0%, 98%);
  color: hsl(234, 12%, 34%);
  text-align: center;
  margin: 0;
  padding: 40px;
}

header h1 {
  font-weight: 300;
  font-size: 2rem;
  color: hsl(234, 12%, 34%);
}
header h2 {
  font-weight: 600;
  font-size: 2rem;
  color: hsl(234, 12%, 34%);
}
header p {
  font-size: 18px;
  color: hsl(212, 6%, 44%);
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 50px auto 0;
  padding: 20px 50px;
}
.cards .card {
  background: hsl(0, 0%, 98%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.cards .card:hover {
  transform: translateY(-10px);
}
.cards .card h3 {
  font-weight: 600;
  color: hsl(234, 12%, 34%);
}
.cards .card p {
  font-size: 14px;
  color: hsl(212, 6%, 44%);
  max-width: 20rem;
  margin-bottom: 50px;
}
.cards .card img {
  width: 50px;
  height: auto;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

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

.supervisor {
  border-top: 4px solid hsl(180, 62%, 55%);
}

.team-builder {
  border-top: 4px solid hsl(0, 78%, 62%);
}

.calculator {
  border-top: 4px solid hsl(212, 86%, 64%);
}

.karma {
  border-top: 4px solid hsl(34, 97%, 64%);
}

@media (max-width: 1310px) {
  .cards {
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  header h1,
  header h2 {
    font-size: 1.4rem;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */