@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&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");

body{
    height: 150vh;
    margin: 0;
    font-family: "Poppins";
}

h2, #About{
    width: 400px;
    text-align: center;
    margin: 20px auto;
}

#firstH2{
    font-size: x-large;
    font-weight: 400;
    color: hsl(229, 6%, 66%);
}

#secondH2{
    font-size: x-large;
    font-weight: 600;
    color: hsl(234, 12%, 34%);
}

#About{
    font-size: small;
    font-weight: 400;
    color: hsl(229, 6%, 66%);
}

#cards{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.card{
    box-shadow: 0px 15px 30px -11px #83a6d280;
    border-radius: 5px;
    height: 180px;
    width: 300px;
    position: relative;
}

.card h3, p{
    text-align: left;
    margin-left: 20px;
}

.card h3{
    font-weight: 600;
    color: hsl(234, 12%, 34%);
}

.card p{
    font-size: small;
    font-weight: 400;
    color: hsl(229, 6%, 66%);
}

.card img{
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
}

#supervisor{
    border-top: 4px solid hsl(180, 62%, 55%);
}

#teamBuilder{
    border-top: 4px solid hsl(0, 78%, 62%);
    margin-bottom: 20px;
}

#karma{
    border-top: 4px solid hsl(34, 97%, 64%);
    margin-top: 20px;
}

#calculator{
    border-top: 4px solid hsl(212, 86%, 64%);
}

@media (min-width: 60em){
    #cards{
        display: grid;
        grid-template-columns: 300px 300px 300px;
    }
}