html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: black;
  color:white;
  scroll-behavior: smooth;
  overflow-y: hidden;
}
body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

body {
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

button {
  cursor: pointer;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

input[type="text"] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

.loading-bundle {
  margin: 2em 0;
  text-align: center;
  opacity: 0;
  animation: delay-opacity 1s 1s forwards;
}

@keyframes delay-opacity {
  to {
    opacity: 1;
  }
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: delay-opacity 1s 0.2s forwards;
  margin: 1em;
}

.loadingspinner {
  pointer-events: none;
  width: 2.5em;
  height: 2.5em;
  border: 0.4em solid transparent;
  border-color: #eee;
  border-top-color: #0074d9;
  border-radius: 50%;
  animation: loadingspin 1s linear infinite;
}

@keyframes loadingspin {
  100% {
    transform: rotate(360deg);
  }
}
img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	/* margin: 2px 5px; */
  }

  hr {
    /* margin-top: -1; */ 
    margin: 0;
    padding: 0;
    width: 10px;
    border-color: transparent;
    border-right-color: rgba(255, 255, 255, 0.7);
    /* border-right-width: 50px; */
    /* border-right-width: 25px; */
    /* border-left-width: 250px; */
    position: absolute;
    bottom:100%;
    transform-origin: 100% 101%;
    animation-name: rain;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  @keyframes rain {
    from {
    transform: rotate(82deg) translateX(0);
    } 
    to {
    transform: rotate(82deg) translateX(calc(100vh + 20px));
    }
  }
  
  