<button>Start quiz</button>
button {
background-color: hsl(345, 94%, 58%);
color: black;
font-weight: bold;
border-radius: .25rem;
padding: 10px;
border: none;
outline: none;
transition: background-color .2s, border .2s;
cursor: pointer;
-webkit-app-region: no-drag;
}
button:active {
background-color: hsl(345, 94%, 53%);
}
button:hover {
background-color: hsl(345, 94%, 63%);
}
:hover works, but not :active