Victor Batischev 0fc8f68c79 font family
2024-02-14 18:46:53 +03:00

18 lines
304 B
SCSS

.button {
display: flex;
align-items: center;
justify-content: center;
background-color: #52b709;
border-radius: 44px;
color: white;
font-style: normal;
border: none;
transition: 0.5s;
&:hover {
transition: 0.5s;
background-color: #52b709a8;
text-decoration: none;
}
}