@charset "UTF-8";

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

* {
    margin: 0px;
    padding: 0px;
}

body {
    height: 100vh;
    width: 100%;
    background-color: hsl(0, 0%, 98%);
    font-family: 'Poppins', sans-serif;
    display: grid;
    justify-content: center;
}

h1, h2, p {
    margin-bottom: 15px;
}

header {
    width: 100%;
    text-align: center;
}

header > h1 {
    font-weight: 200;
    margin-top: 1.5em;
    color: hsl(234, 12%, 34%);
}

header > p {
    margin: 0px 40px 5em 40px;
    color: hsl(229, 6%, 66%);
}

section#container {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 50px;
    margin: 10px 40px;
    padding: 10px;
    
}

section#container div {
    display: grid;
    padding: 35px;
    box-shadow: 0px 5px 10px 2px hsla(234, 12%, 34%, 0.2);
    border-radius: 6px;
    background-color: white;
}

section#container div > h2 {
    color: hsl(234, 12%, 34%);
    font-size: 1.3em;
}

section#container div > p {
    margin-bottom: 30px;
    color: hsl(229, 6%, 66%);
}

section#container div > img {
    justify-self: right;
}

section#container > div#supervisor {
    border-top: 6px solid hsl(180, 62%, 55%);
}

section#container > div#teambuilder {
    border-top: 6px solid hsl(0, 78%, 62%);
}

section#container > div#karma {
    border-top: 6px solid hsl(34, 97%, 64%);
}

section#container > div#calculator {
    border-top: 6px solid hsl(212, 86%, 64%);
}