no mam index.php :
<html>
<head></head>
<body>
<div id="box">
Yeah
</div>
</body>
</html>
I mam styles.css :
#box{
text-align: center;
padding: 15px;
width: 300px;
height: 200px;
line-height: 200px;
color: white;
background-color: #303030;
margin: auto;
margin-top: 150px;
box-shadow: 5px 10px red;
transition: all 0.3s ease;
}
#box:hover{
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}