::-webkit-scrollbar:horizontal {
  display: none;
}

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

::-webkit-scrollbar {
  width: 7px;
  background-color: aqua;
}

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

::-webkit-scrollbar-button {
  background-color: aqua;
  border: 1px solid aqua;
  border-radius: 20%;
  height: 25px;
}

body,
html {
  scrollbar-color: aqua black;
  -ms-overflow-style: none;

  background-color: black;
  margin: 0;
  cursor: url("../cursors/white.cur"), auto;
}

html {
  font-size: 62.5%;
  font-family: "Roboto";

  animation: fade-in 0.8s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#img_scroll {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);

  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 3px white);

  z-index: 1;

  visibility: hidden;
}

p {
  text-align: center;
  font-size: 2.1rem;
  margin-right: 50px;
  margin-left: 50px;
  color: white;

  line-height: 1.25;
}

h2 {
  color: aqua;
  text-shadow: 0 0 10px aqua;

  margin: 2rem;
  font-size: 2.5rem;

  text-align: center;
}

h3 {
  color: lightgreen;
  text-shadow: 0 0 10px lightgreen;

  margin: 2rem;
  font-size: 2.1rem;

  text-align: center;
}

.container {
  text-align: center;
  margin: auto;
}

.column {
  margin: auto;
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  margin-right: 30px;
}

.wrapper {
  background: linear-gradient(
    to right,
    aqua 30%,
    #cbffff 40%,
    #cbffff 70%,
    aqua 80%
  );
  background-size: 200% auto;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 6s linear infinite;
  display: inline-block;
  animation-direction: reverse;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
