body {
  margin: 0;
}
.nav-link:hover {
  color: rgba(255, 136, 0, 0.966) !important;
}
.background {
  background-color: black;
  background-size: 180% 180%;
}

select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url("../img/flatcoloriconsexpand.svg") no-repeat right;
  background-size: 20px 10px;
}

#snackbarContainer {
  visibility: hidden;
  position: fixed;
  z-index: 1;
  bottom: 30px;
  width: 100%;
  text-align: center;

}

#snackbar {
  
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;  
  font-size: 17px;
  padding: 16px;
}

#snackbarContainer.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-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;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

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

.noBorder:focus {
  border: none;
  outline: none !important;
}

