* {
  font-family: monospace;
  z-index: 10;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: white;
}
canvas {
  width: 100%;
  height: 100%;
  z-index: 8;
}


button {
  margin: 20px;
}
.button {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

/* 1 */
.button {
  background: rgb(6,14,131);
  background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
  border: none;
}
.button:hover {
   background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
}

.slider {
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

.slider-container {
  display: none; /* Este se manejará en el JavaScript */
  background: rgba(6,14,131,1);
  padding: 10px;
  border-radius: 8px;
  width: 150px;
}

.text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e0e5ec;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Estilos para pantallas grandes */
@media (max-width: 768px) {
  button {
    width: 100px; /* Smaller button width for smaller screens */
    font-size: 14px; /* Smaller font size */
  }
  
  #sliderContainer {
    width: 100%; /* Full width for sliders on small screens */
  }
}

@media (max-width: 480px) {
  button {
    width: 80px; /* Even smaller button width */
    font-size: 12px; /* Even smaller font size */
  }

  #sliderContainer {
    flex-direction: column; /* Stack sliders vertically */
  }
}



