body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #351435;
  font-family: sans-serif;
  color: #262626;
  font-size: 45px;
  letter-spacing: 2px;
  padding: 40px 80px;
  border: 5px solid #262626;
  position: relative;
  transition: 1s;
}

a:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  transition: 1s;
  transform: rotateX(90deg);
}

a:hover:before {
  transform: rotateX(0);
}

a:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  transition: 1s;
  transform: rotateY(90deg);
}

a:hover:after {
  transform: rotateY(0);
}

a:hover {
  color: white;
}
