body {
    background-color: #F8F8F8;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
}

h2 {
    color: #697077;
    font-weight: 200;
    font-size: 2em;
    margin-bottom: 0px;
}

p {
    color: #697077;
    font-weight: 400;
    max-width: 35em;

}




.main_container {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.top_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 3em;    
}


/* splits the cards into 3 columns and does some alignment */
.cards{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-top: 3em;
    
}


.card {
    position: relative;
    background-color: white;
    border-top: 1px solid;
    border-radius: 0.2em;
    width: 17em;
    box-shadow: 0 8px 16px -8px #BAD2F7;
    padding-left: 2em;
    padding-bottom: 2em;
    
   
}


.vertical_cards {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.card h3{
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 0px;


}

.card h4 {
    font-weight: 400;
    font-size: 0.8em;
    color: #697077;
    padding-bottom: 6em;
    margin-top: 0.5em;
}


.card img {
    position:absolute;
    width: 3em;
    height: 3em;         
    bottom: 2em;
    right: 2em;
    
}


.supervisor {
    border-color: #45d3d3;
    border-width: 0.2em;
   
}

.team_builder {
    border-color: #ea5353;
    border-width: 0.2em;
}


.karma{
    border-color: #f2b632;
    border-width: 0.2em;
}


.calculator {
    border-color: #549ef2;
    border-width: 0.2em;
}   





/* MOBILE DESIGN FORMATTING */

@media (max-width: 480px){
    h1{
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
        text-align: center;
        max-width: 20em;
    }

    .top_text {
        margin-top: 1vh;
    }
  
    .cards {
        flex-direction: column;
        align-items: center;
        margin-top: 2vh;
    }

    .card {
        width: 90%;
    }



}

