Написал такой код и хочу вставить в кнопку свою картинку(иконка), чтобы та была справа и по размерам:
.button {
display: block;
font-size: 14px;
letter-spacing: 3px;
text-transform: uppercase;
font-family: Arial Regular, sans-serif;
background-color: #80b7b3;
border-radius: 50px;
font-weight: 400;
border: none;
width: 200px;
height: 45px;
text-align: center;
color: white;
}
.button:hover {
color: white;
background-color: #3a5856;
tansition: all .3s linear;
-webkit-transition: all .3s linear;
-moz-transition: all .3s linear;
}
Как это сделать?