.error-page {
  width: 100%;
  height: 100%;
  background-image: url('../../images/Background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 95vh;
  font-size: 29px;

  position: fixed;
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 200;
  cursor: pointer; 
}

.error-page > a {
  position: absolute;
  display: block;
  line-height: initial;
  top: 50%;
  left: 50%;
  font-size: 25px;
  transform: translate(-50%);
}

.error-page img {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 197px;
  height: auto;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

/* The alert message box */
.alert {
  padding: 8px;
  color: white;
  margin-bottom: 15px;
  -webkit-animation: fadein 0.5s;
  font-size: 16px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}