a:link{
    color:#ffa500;
    text-decoration: none;
  }
  a:visited{
    color:#7c7c7c;
    text-decoration: none;
  }
  a:hover{
    color:#ffffff;
    text-decoration: none;
  }

body{
  background-color: #242424;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: center;
  width: 100%;
}

h2{
  color: #ffffff;
}

li{
  list-style-type: none;
  line-height: 2rem;
  text-transform: uppercase;
  color:#ffa500;
}

ul{
  flex-direction: column-reverse;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffa500;
  color: #242424;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none; /* Initially hidden */
  opacity: 0;
  transition: opacity 1.5s ease, bottom 1.5s ease;
}

.notification.show {
  display: block;
  opacity: 1;
  bottom: 30px; /* Move up a bit when visible */
}