@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

body .container .cards .card:nth-of-type(5) .canvas, body .container .cards .card:nth-of-type(4) .canvas, body .container .cards .card:nth-of-type(3) .canvas, body .container .cards .card:nth-of-type(2) .canvas, body .container .cards .card:nth-of-type(1) .canvas {
  height: 11rem;
  width: 8rem;
  border-radius: 2px;
  transition: 0.3s ease all;
}

body .container .cards .card:nth-of-type(5) .hex, body .container .cards .card:nth-of-type(4) .hex, body .container .cards .card:nth-of-type(3) .hex, body .container .cards .card:nth-of-type(2) .hex, body .container .cards .card:nth-of-type(1) .hex {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

body .container .cards .card, body .container .cards, body {
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  margin: 0;
  background-color: #EBEBF3;
  min-height: 100vh;
  text-align: center;
  overflow-x: hidden;
}
body .container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}
body .container h2 {
  font-size: 1.8rem;
  word-spacing: 0.25rem;
  text-transform: capitalize;
  text-align: center;
}
body .container .cards {
  margin-top: 3rem;
  flex-wrap: wrap;
}
body .container .cards .card {
  height: 14.5rem;
  width: 9rem;
  margin: 1rem 1.5rem;
  background-color: #fff;
  flex-direction: column;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s ease all;
}
body .container .cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 12px #A3B2C2;
}
body .container .cards .card:nth-of-type(1) .canvas {
  background-color: #93B8E3;
}
body .container .cards .card:nth-of-type(1) .hex {
  color: #7C7C84;
}
body .container .cards .card:nth-of-type(2) .canvas {
  background-color: #A3B2C2;
}
body .container .cards .card:nth-of-type(2) .hex {
  color: #7C7C84;
}
body .container .cards .card:nth-of-type(3) .canvas {
  background-color: #FBABA4;
}
body .container .cards .card:nth-of-type(3) .hex {
  color: #7C7C84;
}
body .container .cards .card:nth-of-type(4) .canvas {
  background-color: #7C7C84;
}
body .container .cards .card:nth-of-type(4) .hex {
  color: #4C545F;
}
body .container .cards .card:nth-of-type(5) .canvas {
  background-color: #AF4884;
}
body .container .cards .card:nth-of-type(5) .hex {
  color: #7C7C84;
}
body .container .btn {
  margin-top: 3rem;
  border: none;
  outline: none;
  background-color: #8e54c7;
  color: #fff;
  font-weight: 600;
  padding: 1rem 4rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease all;
}
body .container .btn:hover {
  background-color: #733bac;
}

.article{
  padding: 5% 10% 0;
  text-align:left;
}