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

:root {
    --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%);
    --Black: hsla(0, 0%, 12%, 0.97);
    --Very-Dark-Blue: hsl(234, 12%, 34%);
    --Grayish-Blue: hsl(229, 6%, 66%);
    --Very-Light-Gray: hsl(0, 0%, 98%);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    height: 100vh;
    background-color: var(--Very-Light-Gray);
    font-family: "Poppins",sans-serif;
}

header {
    text-align: center;
}

#first-header {
    display: block;
    color: var(--Very-Dark-Blue);
    font-weight: 100;
}

#description {
    font-weight: 100;
    color: var(--Very-Dark-Blue);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

.container{
    max-width: 1200px;
    margin: 50px 30px;
    margin: 0 auto;
    width: 100%;
}

main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 0 auto; 
    margin: 50px 30px;  
    
}


.box-text span {
    color: var(--Very-Dark-Blue);
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.box-text p{ 
    margin-top: 10px;
}


#icons {
    text-align: right;
}

.box {
    background-color: #fff;
    border-radius: 5px;
    text-align: right;
    padding: 30px;
    box-shadow: 10px 10px 10px 4px rgb(231, 231, 244);
}
.box-text {
    margin: 20px 20px;
    text-align: left;
}

.supervisor {
    border-top: 5px solid var(--Cyan);  
}

.team-builder {
    border-top: 5px solid var(--Red);
}

.karma {
    border-top: 5px solid var(--Orange);
}
.calculator {
    border-top: 5px solid var(--Blue);
} 

.containerof2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supervisor, 
.calculator {
    align-self: center;
 }

@media screen and (max-width: 768px){
    main{ 
        grid-template-columns: 1fr;
    }
    .box {
        margin: 0 20px;
        margin-inline: 50px;
    }
  

}
@media screen and (max-width: 375px){
    .box {
        padding: 5px;
        margin: 0 20px;   
    }
    h1 {
        font-size: 20px;
        width: 300px;
    }
    .calculator{
        margin-bottom: 20px;
    }
}

