.pamphletfont {
    padding-left: 5%;
    font-weight: 300;
}

.underbar hr {
    margin: 0 auto;
    width: 90%;
    border: none;
    border-top: 2px solid #ffcc00; 
    margin-bottom: 20px;
}

.pamphlet_img {
    display: flex;
    justify-content: center;
    align-items: center;    
    margin-bottom: 20px;
    margin-top: 30px;
}

.pamphlet_img img {
    border: 2px dotted white;
    padding: 5px;
    max-width: 50%;    
    height: auto;       
}

.pamphlet_img img:hover{
  filter: brightness(50%);
  transition: filter 0.3s ease;
}

.download_link {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5%; 
    justify-items: center;
    margin: 20px auto;
    max-width: 90%;
    margin-bottom: 22vh;
}

.download_element img {
    width: 100%;
    border: 2px dotted white;
    padding: 5px;
    box-sizing: border-box;
}

#lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }
  
  #lightbox-img {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer; 
  }