* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
}

body {
  background-color: rgb(30, 30, 30);
}

.content {
  color: white;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 51%;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: left ease .15s;
}

.title {
  font-size: 50px;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  transition: ease margin .15s;
  background-color: rgb(30, 30, 30);
}

.content svg {
  translate: -50%;
  opacity: 0;
  z-index: -1;
  transition: translate ease .15s;
  transition: opacity ease .15s, translate ease .15s;
}

.content:hover svg {
  translate: 0;
  opacity: 1;
}

.content:hover {
  left: 50%;
}