@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");
*,
::after,
::before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img {
	display: block;
	max-width: 100%;
	object-fit: contain;
}
:root {
	/* Primary */
	--Red: hsl(0, 78%, 62%);
	--Cyan: hsl(180, 62%, 55%);
	--Orange: hsl(34, 97%, 64%);
	--Blue: hsl(212, 86%, 64%);
	/* Neutral */
	--Very-Dark-Blue: hsl(234, 12%, 34%);
	--Grayish-Blue: hsl(229, 6%, 66%);
	--Very-Light-Gray: hsl(0, 0%, 98%);
	/***Variables***/
	--card-width: 350px;
	--card-height: 250px;
	--gap: 35px;
	--card-padding: 28px;
}

body {
	font-family: "Poppins", sans-serif;
	font-style: normal;
	margin-bottom: 25px;
	word-wrap: break-word;
}
header {
	text-align: center;
	margin-top: 80px;
	margin-inline: auto;
}
#header-normal-txt {
	font-size: 2.2rem;
}
#header-bold-txt {
	font-size: 2.2rem;
	font-weight: bold;
}
#header-paragraph {
	max-width: 540px;
	margin: 12px auto 0;
	color: var(--Grayish-Blue);
}

#cards {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	margin-inline: auto;
	margin-top: 65px;
	gap: var(--gap);
}

#teamANDkarma {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	gap: var(--gap);
}
.card-class {
	height: var(--card-height);
	max-width: var(--card-width);
	padding: var(--card-padding);
	border-radius: 10px;
	background-color: white;
	box-shadow: 0px 0px 40px 0px var(--Grayish-Blue);
	position: relative;
}
.card-class > div {
	color: var(--Grayish-Blue);
}
img {
	position: absolute;
	right: var(--card-padding);
	bottom: var(--card-padding);
}

#supervisor {
	border-top: 5px solid var(--Cyan);
}
#team {
	border-top: 5px solid var(--Red);
}
#karma {
	border-top: 5px solid var(--Orange);
}

#calculator {
	border-top: 5px solid var(--Grayish-Blue);
}

@media only screen and (max-width: 1128px) {
	#teamANDkarma {
		flex-flow: row wrap;
	}
}
