html, body {
  margin:0; padding:0; border:0; outline:0;
}

html {
  scrollbar-width: thin;
  scrollbar-color: gray black;
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 20px;
  border: 3px solid black;
}

body {
  /* background: #0A212E; */
  margin: 0px;
}

.base-wrapper {
    width: 100vw;
    min-width: 100%;
    display: inline;
}

.main {
  background: black;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* align horizontal */
  align-items: center;
  /* align vertical */
  overflow: hidden;
}

.logo {
  width: 50vw;
  transform: translate(0, -5%);
  z-index: 1;
}

.wave-wrapper {
    position: absolute;
    top: 50%;
}

.wave {
  position: relative;
  opacity: 0;
  top: 0;
  width: 1px;
  height: 1px;
  border: #FFF 1px solid;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-animation-name: ripple;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -moz-animation-duration: 10s;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}


@keyframes ripple {
    from {
      opacity: 1;
    }
    to {
      width: 100vw;
      height: 100vw;
      border-width: 1px;
      top: -50vw;
      opacity: 0;
    }
}

.down-arrow {
  position: absolute;
  bottom: 10;
  width: 1vw;
  height: 1vw;
  border: 0.5vw solid;
  border-color: white transparent transparent white;
  transform: rotate(-135deg);
}

.down-arrow2 {
  position: absolute;
  bottom: 30;
  width: 1vw;
  height: 1vw;
  border: 0.5vw solid;
  border-color: white transparent transparent white;
  transform: rotate(-135deg);
}

.info {
  display: flex;
  width: 100%;
  height: 100%;
  color: white;
  background: black;
  position: relative;
}

.row {
    width: 100%;
    text-align: center;
}
.figure {
    text-align:center;
    width: 515px;
    display: inline-block;
    margin: 5%;
    padding: 5px;
    margin-top: 10%;
}

.figure h2 {
    font-family: monospace;
    font-size: 30px;
}

.figure p {
    font-family: monospace;
    font-size: 25px;
}

.soon {
    position: absolute;
    bottom: 0;
    left: 50%;
    font-family: monospace;
    font-size: 20px;
    transform: translate(-50%, -50%);
}
