body {
    width: 100vw;
    height: 100vh;
    font-size: 15px;
    background-color: white;
    font-family: url(https://fonts.google.com/specimen/Poppins);
    color: hsl(212, 6%, 44%);
}

header {
    display: flex;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 20%;
}

header h1 {
    font-weight: 600;
    color: hsl(234, 12%, 34%);
    margin-top: 0px;
    font-size: 28px;
}

header h2 {
    font-weight: 600;
    color: hsl(212, 6%, 44%);
    margin-top: 0px;
    font-size: 20px;
}

header q {
    width: 25%;
    height: 8rem;
    text-align: center;
}

main {
    height: 80%;
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-self: center;
}

figure.mgt-card {
    width: 300px;
    height: 200px;
    box-shadow: 1px 5px 2px hsl(212, 6%, 44%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 5px;
}

figure.mgt-card h1 {
    margin: 0px 0px;
}

figure.mgt-card p {
    padding-right: 10px;
}

figure.mgt-card#supervisor {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    border-top: hsl(180, 62%, 55%) 4px solid;
}

figure.mgt-card#team-builder {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    justify-self: center;
    align-self: center;
    border-top: hsl(0, 78%, 62%) 4px solid;
}

figure.mgt-card#karma {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    justify-self: center;
    align-self: center;
    border-top: hsl(34, 97%, 64%) 4px solid;
}

figure.mgt-card#calculator {
    grid-column: 3 / span 1;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    border-top: hsl(212, 86%, 64%) 4px solid;
}

figure.mgt-card img {
    align-self: flex-end;
    justify-self: flex-end;
}

@media (max-width: 48em) {
    header q {
        width: 60%;
        height: 8rem;
        text-align: center;
    }

    main {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
}