.fade {
    transition: opacity 0.4s ease-in;
  }
  
  .fadeOut {
      opacity: 0.3;
      filter: grayscale(1);
  }
  
  .fadeIn {
      opacity: 1;
   }
  
   .fadeOut img {
       filter: grayscale(1);
       transition: grayscale 0.3s;
   }
  
    .fadeIn img {
       filter: grayscale(0);
       transition: grayscale 0.3s;
   }
   
  .fadeOut a, .fadeOut span {
      color: #778899;
      transition: color 0.3s;
  }

  .shadow {
    box-shadow: 6px 6px 15px 5px #000000;
  }

  .headline_1 {
    color: var(--slider1_color);
  }

  .headline_2 {
    color: var(--slider2_color);
  }

  .headline_3 {
    color: var(--slider3_color);
  }

  .headline_4 {
    color: var(--slider4_color);
  }

  #page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
    color: #000000;
    top: 80px;
    left: 200px;
    width: 85%;
  }

  #page2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    top: 250px; 
    color: #000000;
    top: 180px;
    left: 200px;
    width: 85%;
    font-size: 1em;
  }

  .showlist {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 450px;
    margin: 10px 30px 15px 0;
    background-color: rgba(150, 150, 150, 0.8);
    border-radius: 30px;
    box-shadow: 5px 5px 15px 5px #222;
  }

  .showlist a {
    display: block;
    color: #000000;
    text-decoration: none;
  }
  
  .showlist a:visited,
  .showlist a:hover,
  .showlist a:active {
    color: #000000;
    text-decoration: none;
  }

  .showlist_title {
    margin: 15px 0 20px;
    font-weight: bold;
    padding-left: 10px;
  }

  .showlist_title span {
    font-size: 15px;
  }  

  .showlist_img {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  .showlist_img img {
    margin: 0 auto 15px;
    border-radius: 10px;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    transition: all 0.3s;
    box-shadow: 5px 5px 15px 5px #222;    
  }

  .showlist_img img:hover {
    transform: scale(1.05);
    border-radius: 15px;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    transition: all 0.3s;
    box-shadow: 10px 10px 15px 5px #000000;
  }

  a.nolink {
    text-decoration: line-through;
    color: red !important;
    cursor: not-allowed;
    font-weight: bold;
}

a.nonavlink {
  color: #fff !important;
  text-decoration: line-through;
  cursor: not-allowed;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(255, 0, 0, 1), -2px -2px 10px rgb(255, 0, 0) !important;
}    

.divider {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 150px;
  margin-bottom: 50px;
}

.divider2 {
  display: block;
  font-size: 2em;
  width: 100%;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}