@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background-color: #fff;
  font-family: "Roboto Mono", monospace;
  display: grid;
  place-items: center;
}

.wrapper {
  width: max-content;
}
.text {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #161616;
  padding: 0.1em 0.4em;
  box-shadow: inset 0 -0.5em 0 rgba(192, 35, 100, 0.3);
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
}
.text:hover {
  box-shadow: inset 0 -1.5em 0 rgba(192, 35, 100, 0.5);
}
