#notifications{
  position:absolute;
  display:flex;
  flex-direction: column;
  width:fit-content;
  margin:0 auto;
  text-align: center;
  bottom:10px;
  left:10px;
  z-index: 200;
}
#notifications div{
  font-size: 1em;
  color:white;
  width:fit-content;
  margin-top:1px;
  padding:5px 10px;
  border-radius: 3px;
}
#notifications div.info{
  background-color: rgb(0,0,0,1);
}
#notifications div.success{
  background-color: rgba(41, 126, 33, 0.8);
}
#notifications div.problem{
  background-color: rgba(126, 33, 33, 0.8);
}