html,
body {
  margin: 0;
  padding: 0;
  outline: 0;
  /* border: none; */
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: rgba(255, 255, 255, 1);
  background-image: url("./images/fondo1.png");
}

body::-webkit-scrollbar {
  display: none;
  /* overflow: hidden; */
  /* -webkit-appearance: none; */
}

div {
  border: 0px solid red;
  padding: 0%;
}

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

::-webkit-scrollbar:horizontal {
  height: 12px;
}

::-webkit-scrollbar-button:increment,
::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: rgba(10, 70, 90, 1);
  border: 2px solid rgba(10, 50, 50, 1);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(10, 70, 90, 0.4);
}
