body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color:#fff;
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5c5c5c;
}

.coming-soon {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 90%;
  max-width: 500px;
  height: 200px;
  background-image: url("../img/logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.leyenda {
  position: relative;
  width: 350px;
  height: auto;
  text-align: center;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  margin-top: 20px;
}

.container {
  width: 6px;
  position: absolute;
  top: 10px;
  left: calc(75% - 3px);
}

/* .slogan {
  width: 90%;
  height: auto;
  margin-top: 30px;
  text-align: center;
  color: #000;
  font-family: 'Montserrat', sans-serif;
} */

.dot-typing {
  position: relative;
  left: -9999px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #000;
  color: #000;
  box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  animation: dotTyping 1.5s infinite linear;
}

@keyframes dotTyping {
  0% {
    box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  }
  16.667% {
    box-shadow: 9984px -10px 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  }
  33.333% {
    box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  }
  50% {
    box-shadow: 9984px 0 0 0 #000, 9999px -10px 0 0 #000, 10014px 0 0 0 #000;
  }
  66.667% {
    box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  }
  83.333% {
    box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px -10px 0 0 #000;
  }
  100% {
    box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  }
}