:root{
--Red: hsl(0, 78%, 62%);
--Cyan: hsl(180, 62%, 55%);
--Orange: hsl(34, 97%, 64%);
--Blue: hsl(212, 86%, 64%);

/*### Neutral */

--Grey500: hsl(234, 12%, 34%);
--Grey400: hsl(212, 6%, 44%);
--White: hsl(0, 0%, 100%);

--Poppins:"Poppins", sans-serif;
--fontSize: 15px

}


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

body{
   font-family: var(--Poppins);
}

.wrapper{
    height: 100vh;
    width: 100%;
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/*Header styling*/

.header_container{
    font-size: 1.5rem;
    text-align: center;
    color: var(--Grey500);
}

.header_container .reliable{
    font-weight: 200;
}

.header_container .poweredby{
    font-weight: 600;
}

.header_container p{
    font-weight: 400;
    font-size: var(--fontSize);
    margin: 1rem auto;
    width: 60%;
}

/*Card styling*/

.card_container{
    height: 70vh;
    width: 80%;
    display: flex;
}

.card_styling{
    background-color: var(white);
    box-shadow: rgba(64, 90, 175, 0.171) 0px 7px 29px 0px;
    border-radius: 5px;
    height: 18rem;
    min-width: 15rem;
    padding: 2.5rem 3rem;
}

.card_styling h6{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--Grey500);
}

.card_styling p{
    font-size: var(--fontSize);
    font-weight: 400;
    color: var(--Grey400);
    margin-top: 10px;
}

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

.team_container{
border-top: 5px solid var(--Red);

}

.karma_container{
border-top: 5px solid var(--Orange);
margin: 2rem 0;

}

.calculator_container{
border-top: 5px solid var(--Blue);

}

.center_container{
    width: 25rem;
    margin: 0 1rem;
}

.calculator_container, .supervisor_container{
    margin: auto;
    width: 25rem;
}


.card_styling img{
    float: right;
    margin-top: 2rem;
}

/*Media Queries Styling*/

@media only screen and (max-width: 900px) {

    .header_container{
        padding: 1rem;
    }

    .header_container h1{
        font-size: 1.5rem;
    }

    .header_container p{
    width: 70%;
}

    .wrapper{
        height: fit-content;
        margin-top: 5rem;
    }

  .card_container{
   
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-top: 2rem;
    margin-bottom: 5rem;
    width: fit-content;
}

.center_container{
   margin: auto; 
   margin-top: 2rem;
    }


    
}