When I position the cursor over my h1
element it scales by 2, so when the cursor leaves the h1
I want it to return to its normal size but in the same way...slowly!
.navBar h1:hover {
color: rgb(248, 250, 144);
transform: scale(1.7);
transition: linear 1s;
z-index: 10;
text-shadow: 2px 8px 5px 1px rgba(224, 224, 117, 0.952);
}