* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins;
  background-color: hsl(0, 0%, 100%);
  font-size: 15px;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
  max-width: 70rem;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-weight: 300;
}

header h2 {
  font-weight: 600;
  font-size: 1.8rem;
  color: hsl(234, 12%, 34%);
}

header p {
  margin-top: 1.2rem;
  color: hsl(212, 6%, 44%);
  width: 70%;
  text-align: center;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem auto;
  gap: 2rem;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 23rem;
  max-height: 16rem;
  gap: 0.5rem;
  padding: 2rem 3rem;
  margin: 2rem auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.col h3 {
  font-weight: 500;
}
.col p {
  font-size: 0.9rem;
  color: hsl(212, 6%, 44%);
}

.col img {
  display: flex;
  width: 3rem;
  align-self: flex-end;
  margin-top: 2rem;
}

.col1 {
  border-top: 3px solid hsl(180, 62%, 55%);
}

.col2 {
  border-top: 3px solid hsl(0, 78%, 62%);
}
.col3 {
  border-top: 3px solid hsl(34, 97%, 64%);
}
.col4 {
  border-top: 3px solid hsl(212, 86%, 64%);
}

@media only screen and (max-width: 1220px) {
  header {
    text-align: center;
  }
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  main section {
    width: 100%;
  }

  .col {
    padding: 1.5rem 1.5rem;
    max-width: 9rem;
  }
}
