﻿div.standardCategory {
    float: left;
    list-style-type: none;
    margin: 0 20px 20px 0;
    text-align: center;
    font-family: var(--default-font);
    width: 20%;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(236,236,236,1);
    -moz-box-shadow: 0px 0px 1px 1px rgba(236,236,236,1);
    box-shadow: 0px 0px 1px 1px rgba(236,236,236,1);
    padding: 0 10px;
    color: #000000;
}

.standardCategory a {
	color: #000000;
	font-family: var(--default-font);
	font-weight: 600;
	-webkit-transition: color .4s;
	-o-transition: color .4s;
	transition: color .4s;
}

.standardCategory a:hover {
	color: #83b719;
}

.standardCategory a:focus {
	color: #83b719;
}