I'm using the scale effect when my mouse is hovering over a button to increase the size, but whenever I hover over the button the text on the button gets blurred and I don't know how to fix it. someone else asked a similar question but the only answer was quite vague. note for my code snippet too make sense you need to expand the code snippet to see what I mean
/*html {
background-size: cover;
}*/
body {
padding: 50px;
}
button {
transition: transform 0.5s;
font-family: Arial, Helvetica, sans-serif;
text-align: left;
font-size: 18px;
cursor: pointer;
height: 250px;
width: 200px;
border-style: none;
outline-style: none;
color: none;
/*figure out how too stop text from blurring*/
}
div {
padding: 90px;
background-image: url(spiderman\ miles\ morales.jpg);
background-size: cover;
}
button:hover {
transform:scale(1.03,1.03);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
<html>
<head>
<title>shop.shop</title>
<link rel="stylesheet" href="shop.css">
</head>
<body>
<button>
<div>
</div>
the quick brown fox jumps over the lazy dog
</button>
</body>
</html>