Решил изменить стиль кнопки, но не работает. Не могу понять в чем проблема. Буду благодарен за помощь
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<link rel='stylesheet' href='Практика.css'>
<title>Практика</title>
</head>
<body>
<a href='#' target='_blank' сlass='button'><div>fdfds</div</a>
<script src='Практика.js'></script>
<body>
</html>
a.button{
background-color: rgb(64,199,129);
color: white;
font-weight: 700;
text-decoration: none;
padding: 5px;
border-radius: 3px;
}
a.button:hover{
background: rgb(53, 167, 110);
}
a.button:active{
color:white;
font-weight: 700px;
text-decoration: none;
background-color: rgb(64,199,129);
}