<html>
  <body>
    <h1>Hover Me!</h1>
    <button>Hover plz</button>
  </body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Lobster&family=Lora:ital@0;1&family=Poppins:wght@300;400&family=Unbounded&display=swap');

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20%;
}

h1 {
  font-family: Poppins;
  transition: 0.3s;
}

h1:hover {
  color: #2a9d8f;
}

button {
    border-radius: 5px;
  width: 150px;
  height: 50px;
  font-family: Poppins;
  color: #2a9d8f;
  background-color: white;
  border-color: #2a9d8f;
}


button:hover {
  background-color: #2a9d8f;
  color: white;
  transition: 0.3s;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.