#notification {
  position: fixed;
  bottom: 1em;
  left: 1em;
  padding: 0.5em;
  background-color: #3366BB;
  color: white;
  border-radius: 0.5em;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
}

#notification.show {
  transform: translateY(0);
  opacity: 1;
}

