body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background-color: #fec40f;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
}

.innerContent {
  text-align: center;
}

.innerContent .button a {
  color: #000;
  text-decoration: none;
  font-weight: 800;
  padding: 14px;
  display: block;
  z-index: 999;
  position: relative;
  transition: ease 0.4s color;
}

.innerContent .button {
  position: relative;
  width: max-content;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}

.innerContent .button:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #000;
  transition: ease 0.4s all;
}

.innerContent .button a:hover {
  color: #fff;
}

.innerContent .button:hover:after {
  left: 0;
}

.innerContent .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2%;
}

.innerContent .logo img {
  width: 100px;
}
