*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    margin:3rem 1rem 3rem 1rem;
}
h1{
    font-family: Poppins, monospace;
    font-size: 1.7rem;
    color:hsl(212, 6%, 44%);
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
}
h1 .bold{
    color: hsl(234, 12%, 34%);
    font-weight: 600;
}
.text{
    font-family: Poppins, monospace;
    font-size: 1.2rem;
    color: hsl(212, 6%, 44%);
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}
.blocks{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    font-family: poppins, monospace;
}
.block-heading{
    margin-bottom: 0.5rem;
}
.block-supervisor, .block-calculator, .block-karma, .block-team-builder{

    width: 100%;
    max-width: 600px;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    color: hsl(234, 12%, 34%);
    border-radius: 0.5rem;
    border-top: 0.3rem solid hsl(180, 62%, 55%);
}
.img-supervisor, .img-team-builder, .img-karma, .img-calculator{
    margin-top: 2rem;
    margin-right: 2rem;
    text-align: right;
    height: max-content;
}
.block-team-builder{
    border-top: 0.3rem solid hsl(0, 78%, 62%);
}
.block-karma{
    border-top: 0.3rem solid hsl(34, 97%, 64%);
}
.block-calculator{
    border-top: 0.3rem solid hsl(212, 86%, 64%);
}
footer{
    text-align: center;
    font-family: Poppins, monospace;
    font-size: 1rem;
    color: hsl(212, 6%, 44%);
    margin-top: 2rem;
}
footer a{
    color: hsl(234, 12%, 34%);
    text-decoration: none;
    font-weight: 600;
}
@media (min-width: 900px){

    .blocks{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 3rem;
    }
    .block-supervisor{
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .block-calculator{
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
} 
    
