@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');


:root {
  --Red: hsl(0, 78%, 62%);
  --Cyan: hsl(180, 62%, 55%);
  --Orange: hsl(34, 97%, 64%);
  --Blue: hsl(212, 86%, 64%);
  --VeryDarkBlue: hsl(234, 12%, 34%);
  --GrayishBlue: hsl(229, 6%, 66%);
  --VeryLightGray: hsl(0, 0%, 98%);
}

* {
  font-family: "Poppins", serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  text-align: center;
  min-height: 100vh;
  background-color: var(--VeryLightGray);
  padding: 0 10px;
}

h1 {
  color: var(--VeryDarkBlue);
}

h1:first-child {
  font-weight: 200;
  margin-top: 40px;
}

#f {
  max-width: 550px;
  margin: auto;
  color: var(--GrayishBlue);
  margin-top: 20px;
  margin-bottom: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.col {
  display: flex;
  flex-direction: column;
}

.box {
  position: relative;
  padding: 30px;
  text-align: left;
  max-width: 400px;
  height: 250px;
  background-color: white;
  margin: 20px;
  text-align: left;
  border-radius: 5px;
  box-shadow: 5px 5px 10px var(--GrayishBlue);

  h2 {
    color: var(--VeryDarkBlue);
  }

  p {
    color: var(--GrayishBlue);
  }
}

img {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.supervisor {
  border-top: 7px solid var(--Cyan);
}

.team {
  border-top: 7px solid var(--Red);
}

.karma {
  border-top: 7px solid var(--Orange);
}

.calculator {
  border-top: 7px solid var(--Blue);
}