:root{
    --primary:#008072;
    --secondary: #00807148;
    --third:#eeeeee;
    --radius:8px;
}


*{
    margin: 0;
    padding: 0;
    font-family: "calibri",sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
    transition: font-weight 100ms linear;
}
a:active{
    color: none;
}
a:hover{
    font-weight: bold;
    box-sizing: border-box;
}

/******************Helpers******************/
.color-primary{
    color: var(--primary);
}

.d-flex{
    display: flex;
}

.flex-one{
    flex:1;
}

.flex-middle{
    flex: 0.5;
}

.justify-center{
    justify-content: center;
}

.space-between{
    justify-content: space-between;
}

.space-evenly{
    justify-content: space-evenly;
}

.flex-row{
    flex-direction: row;
}

.flex-column{
    flex-direction: column;
}

.align-items-center{
    align-items: center;
}

.align-items-end{
    align-items: flex-end;
}

.bg-primary{
    background-color: var(--primary);
}

.bg-secondary{
    background: var(--secondary);
}

.form-group{
    display: flex;
    flex-direction: column;
    padding: 20px 10%;
}
.form-group label{
    font-weight: 500;
    font-size: 18px;
}

.w-100{
    width: 100%;
}

.px{
    padding-left: 5%;
    padding-right: 5%;
}

.border{
    border: 1px solid red;
}


.border-radius{
    border-radius: 5px;
}


.text-center{
    text-align: center;
}

.line-height-normal{
    line-height: 30px;
    font-size: 20px;
}

/******************end helpers******************/

