body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
header {
  text-align: center;
}
h1 {
  font-weight: 200;
}
span {
  font-weight: 600;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px;
}
p {
  color: hsl(212, 6%, 44%, 60%);
}

.Supervisor,
.Team,
.Karma,
.Calc {
  border: 1px solid white;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px hsla(212, 6%, 44%, 0.18);
  padding: 20px;
  width: 300px;
  min-height: 200px;
}
/* .Supervisor,
.Calc {
  margin-top: 150px;
} */
img {
  /* float: right; */
  align-self: flex-end;
}
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.Supervisor {
  border-top-style: solid;
  border-top-width: thick;
  border-top-color: hsl(180, 62%, 55%);
}

.Team {
  border-top: solid;
  border-top-width: thick;
  border-top-color: hsl(0, 78%, 62%);
}
.Karma {
  border-top: solid;
  border-top-width: thick;
  border-top-color: hsl(34, 97%, 64%);
}
.Calc {
  border-top: solid;
  border-top-width: thick;
  border-top-color: hsl(212, 86%, 64%);
}

/*Mobile Responsiveness*/
@media (max-width: 768px) {
  .cards {
    display: flex;
    flex-direction: column;
  }
  header {
    color: hsl(234, 12%, 34%);
  }
}
