html, body {
  height: 100vh;
  background-image: url(../img/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.logo {
  position: relative;
  display: block;
  margin: 8% auto 0;
}

.description {
  color: white;
  font-family: 'Prompt', sans-serif;
  font-size: 22px;
  text-align: center;
  margin-bottom: 5rem;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

button {
  border-radius: 10px;
  padding: 10px 20px;
  /* opacity: 20%; */
  border: none;
  font-size: 19px;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin-bottom: 265px;
}

button:hover{
    box-shadow: 0 0 .2rem #fff,
    0 0 .2rem #fff,
    0 0 2rem #B44AF2,
    0 0 0.8rem #B44AF2,
    0 0 2.8rem #B44AF2,
    inset 0 0 1.3rem #B44AF2; 
    transition: 0.3s;
}

.explore {
  color: white;
  background-color: transparent;
  border: 2px solid white;
  margin-right: 10px;
}

.explore:active {
  color: white;
  text-shadow:
    0 0 1px #B44AF2,
    0 0 2px #B44AF2,
    0 0 5px #B44AF2,
    0 0 10px #B44AF2;
}

.neon-box{
  box-shadow: 0 0 .2rem #fff,
  0 0 .2rem #fff,
  0 0 2rem #B44AF2,
  0 0 0.8rem #B44AF2,
  0 0 2.8rem #B44AF2,
  inset 0 0 1.3rem #B44AF2; 
}

.moving-image {
  position: fixed;
  bottom: 0;
  left:0;
  width: 100%;
  height: 265px;
  background: url(../img/moving.png) repeat-x;
  animation: move 25s linear infinite;
  margin-top: 20px;
  z-index: 0;
}


@keyframes move {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -1733px 0px;
  }
}


