* {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
  min-height: 100%;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


.wrapper {
  position: absolute;
  width: 100%;
  margin-top: 50vh;
  transform: translateY(-50%);
  padding: 30px;
}

h1 {
  position: relative;
  text-align: center;
  font-size: 13px;
  color: black;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  opacity: 0.5;
}

h3 {
  position: relative;
  text-align: center;
  font-size: 44px;
  color: black;
  margin-top: -13px;
  font-family: 'Inknut Antiqua', serif;
}

a {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 105px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

a:before {
  position: relative;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -20px;
  background: black;
  border-radius: 30px;
  opacity: 0.2;
}

a:after {
  position: relative;
  display: block;
  content: "";
  width: 0px;
  height: 2px;
  top: 0;
  background: black;
  border-radius: 30px;
  opacity: 0;
  transition: 0.25s ease-in-out;
}

a:hover:after {
  opacity: 1;
  width: 100%;
}
