@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');


:root {
    /* colors */
    /* primary */
    --red: hsl(0, 78%, 62%);
    --cyan: hsl(180, 62%, 55%);
    --orange: hsl(34, 97%, 64%);
    --blue: hsl(212, 86%, 64%);

    /* neutral */

    --grey-500: hsl(234, 12%, 34%);
    --grey-400: hsl(212, 6%, 44%);
    --white: hsl(0, 0%, 100%);

    /* fonts */
    --font-size: 15px;
    --font-family: "Poppins", sans-serif;


    /* border */




}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html,
body {
    height: 100%;
}

body {
    background-color: white;

}

main {
    height: 100%;
}

.content {
    /* border: 3px solid red; */
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}

h1,
h2 {
    font-size: 2rem;
    font-family: var(--font-family);
}

h1 {
    font-weight: 200;
    color: var(--grey-500);
}

.heading-texts {
    max-width: 60ch;
    text-align: center;
}

.sub-heading {
    margin: 1rem 0;
    color: var(--grey-500);
}

p{
    color: var(--grey-400);
}
h3{
    color: var(--grey-500);
    font-family: var(--font-family);

}

.cards {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    width: fit-content
}

article {
    /* width: 325px; */
    height: 250px;
    /* border: 1px solid; */
    background-color: white;
    border-radius: 5px;
    padding: 1.5rem;
    /* box-shadow: 0px 3px 3px rgb(146, 145, 145); */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;

}

.karma {
    grid-column: 2/3;
    border-top: 4px solid var(--orange);
}

.supervisor {
    grid-column: 1/2;
    grid-row: 1 / -1;
    align-self: center;
    border-top: 4px solid var(--cyan);
    /* border-right: 2px solid; */

}

.calculator {
    grid-column: 3;
    grid-row: 1/-1;
    align-self: center;
    border-top: 4px solid var(--blue);

}

.team-builder {
    border-top: 4px solid var(--red);

}

.card-text{
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins";
}
img {

    width: 50px;
    align-self: flex-end;
    margin-top: auto;
    margin-bottom: 1rem;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

