:root {
  color: #eae7dc;
  font-family: Serif;
  background-color: black;
                              }
  @font-face {
          font-family: 'basteleur';
          src: url('https://jesterautophagy.neocities.org/fonts/Basteleur-Moonlight.ttf') format('truetype');
          font-weight: normal;
          font-style: normal;
        }
         
        
        h1, h2, h3, h4, h5, h6 {
          font-family: 'basteleur', serif;
          margin-bottom: 1rem;
        }
        
       
        
        body {
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          margin: 0;
          background-image: url("ALL PICKTURES/texture.png");
          background-repeat: repeat;
        }

         a {
          color: white;
          font-weight: 300;
          text-decoration: underline;
          padding:10px;
          }
          
           a:hover {
            text-shadow: 0 0 5px #c0c0c0;
            }

#header {font-size: 1.5em;
        font-family: 'basteleur', serif;
          margin-bottom: 1rem;} 

 #moviewall {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row;
    gap: 40px;
    height: auto;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    padding: 10px;
    align-items: center;
      }
  
  .poster img {
    width: 250px;
    height: auto; 
    }
   
   
   @keyframes bounce {
     0% { transform: translate(-0px, -4px); }
     33% { transform: translate(-2px, -8px); }
     66% { transform: translate(0px, -4px); }
     100% { transform: translate(0px, -4px); }
    }

   
   
  .poster img:hover { 
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 10px 10px 8px black;
   }
    
    .modal {  
     display: none;
}

    .modal:target {
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.85);
    }
    
    .modal-content {
      background: black;
      color: white;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      border: 1px solid #555;
      position: relative;
      box-shadow: 0 0 20px #000;
      
    }
    
    .modal-content a {
      position: absolute;
      top: 10px;
      right: 15px;
      text-decoration: none;
      color: white;
      font-size: 20px;
    }