html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
}

/* width */
::-webkit-scrollbar {
}

/* Track */
::-webkit-scrollbar-track {
}

/* Handle */
::-webkit-scrollbar-thumb {
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
}

#alerts {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10000;
  max-height: 25vh;
  overflow: scroll;
  display: flex;
  flex-direction: column;
}

#alerts .alert {
  background-color: yellow;
  width: 100%;
  margin: 10px;
  padding: 0.5rem;
  font-family: Calibri, sans-serif;
}

