.web a {	border-radius: 3px;	position: relative;	display: flex;	justify-content: space-around;	align-items: center;	margin: 0 auto 5px;	max-width: 100%.;	padding: 10px 25px;	color: #FFFFFF;	transition: 0.3s ease-in-out;	background-color: #093;	font-size: 15px;}.web a:hover {	color: #FFF;	background-color: #f00;}.web a:after {    content: '';    width: 5px;    height: 5px;    border-top: 3px solid #fff;    border-right: 3px solid #fff;    transform: rotate(45deg) translateY(-50%);    position: absolute;    top: 50%;    right: 20px;    border-radius: 1px;    transition: 0.3s ease-in-out;}.web a:hover:after {    border-color: #FFF;}