@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  display: grid;
  place-content: center;
  background-color: #f8f2f2;
}

a {
  color: #000;
  position: relative;
  text-decoration: none;
  font-size: 52px;
  font-weight: 500;
  z-index: 0;
}

a::before {
  content: "";
  inset: 0;
  background: #f37021;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  background: #000;
}

a:hover {
  color: #fff;
}