@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");
/*Fonts*/
/*weights*/
/*Colors*/
/*Primary*/
/*Neutral*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: clamp(1.5rem, 5vw, 2rem);
  background-color: #FAFAFA;
  display: grid;
  grid-template-rows: repeat(3, auto);
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px; /*Tamanho base de fonte*/
  color: hsl(212, 6%, 44%);
}

header {
  margin-bottom: 4rem;
  width: clamp(16rem, 80vw, 34rem);
  text-align: center;
  justify-self: center;
}
header h1 {
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  margin-bottom: 1rem;
  font-weight: 200;
}
header h1 span {
  font-weight: 600;
  color: hsl(234, 12%, 34%);
}
header p {
  font-size: clamp(0.5rem, 3.9vw, 1rem);
  color: hsl(234, 12%, 34%);
}

main {
  margin-bottom: 1rem;
  display: grid;
  grid-template-rows: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 42.25rem) {
  main { /*Tablet*/
    grid-template-columns: 2fr;
  }
  main .team-builder {
    grid-column: 2;
  }
  main .karma {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (min-width: 64.188rem) {
  main { /*Desktop*/
    grid-template-columns: 3fr;
  }
  main .supervisor {
    grid-row: 1/3;
  }
  main .team-builder {
    grid-column: 2;
    grid-row: 1;
  }
  main .karma {
    grid-column: 2;
    grid-row: 2;
  }
  main .calculator {
    grid-column: 3;
    grid-row: 1/3;
  }
}
main .supervisor {
  border-top: 4px solid hsl(180, 62%, 55%);
}
main .team-builder {
  border-top: 4px solid hsl(0, 78%, 62%);
}
main .karma {
  border-top: 4px solid hsl(34, 97%, 64%);
}
main .calculator {
  border-top: 4px solid hsl(212, 86%, 64%);
}

section {
  width: clamp(20rem, 30vw, 23rem);
  padding: clamp(1.4rem, 8vw, 2rem);
  border-radius: 0.6rem;
  box-shadow: 0px 5px 10px #DFE5F6;
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 0.4rem;
}
section h2 {
  font-size: clamp(1.15rem, 4vw, 1.2rem);
  color: hsl(234, 12%, 34%);
}
section p {
  font-size: clamp(0.78rem, 1vw, 1rem);
  color: hsl(212, 6%, 44%);
}
section .image {
  margin-top: 1.7rem;
  justify-self: end;
}

.attribution {
  font-size: 0.6rem;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=style.css.map */