* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
}
.wrapper {
  position: fixed;
  width: 100%;
  z-index: 99;
  bottom: 10vh;
}
.logo {
  text-align: center;
  max-width: 150px;
  margin: 0 auto;
}

.logo p {
  margin: 1rem 0;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-size: 0.7rem;
}

a {
  background-image: linear-gradient(to right, #cfad81, #cfad81 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

a:before {
  content: "";
  background: #cfad81;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

a:hover {
  background-position: 0;
}

a:hover::before {
  width: 100%;
}

.logo img {
  width: 150px;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

