/* gallery.css */

.formal-frame {
    width: auto;
    padding: 6px;
    background-blend-mode:darken;
    background-image: radial-gradient(darkgreen, black);
    border: 3px solid #aaa;
    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.4),
        inset -3px -3px 6px rgba(255,255,255,0.8);
}

h1 {   
    font-family: New Times Roman !important;
    color: Gold !important;
    font-size: 290% !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;
    line-height: 1 !important;
    font-variant: small-caps !important;
    padding-top: 1% !important;
    margin-bottom: 2px !important;
    padding-left: 7.5% !important;
    margin: 0 !important;
}

h2 {    
    font-size: 100% !important;
    line-height: 1.5 !important;
    color: white !important;
    font-weight: normal !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;   
    padding-left: 7.8% !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    margin: 0 !important;
}

h3 {
    font-size: 115% !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;
    color: white !important;
    line-height: 1.1 !important;
    font-weight: normal !important;
    font-variant: normal !important;
    padding-left: 7.8% !important;
    text-align: left !important;
    margin-bottom: 2px !important;
    margin: 0 !important;
}

.help-icon2 {
    position: absolute;
    top: 70px;
    left: 315px;
    font-size: 135%;
    padding: 5px;
    cursor: pointer;
}

.help-icon2::before {
    content: '*';    
    color: white;
    font-weight: bolder;   
}

.help-text2 {
    display: none;
    position: absolute;
    top: -20px;
    left: 450px;
    color: white;
    padding: 10px;
    font-size: 85%;
    font-family: shelleyvolute;
    width: 410px;
    font-style: italic;    
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    text-align: right;
    line-height: 110%;
    z-index: 1;
    animation: grow 0.5s forwards;
}

@keyframes grow {
    from {
        transform: translate(0%, 0%) scale(0.1);
    }
    to {
        transform: translate(0%, 0%) scale(1);
    }
}

.help-icon2:hover .help-text2 {
    display: block;
}

.round-background2 { 
    width: 160px;
    height: 20px;    
    display: flex;
}

.help-icon {
    position: absolute;
    top: 30px;
    left: 120px;
    padding: 5px;
    cursor: pointer;
    z-index: 1;
}

.help-icon::before {
    content: ' ';
    font-size: 20px;
    color: gold;
    font-weight: bolder;   
}

.help-text {
    display: none;
    position: absolute;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.75); /*the 0.75 makes the larger shadow */
    top: 310px;
    left: 275px;
    color: gold;
    padding: 10px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 105%;
    width: 740px;
    text-align: justify;
    line-height: 110%;
    background-image: radial-gradient(darkblue, black);
    z-index: 1;
    animation: grow 0.5s forwards;
}

@keyframes grow {
    from {
        transform: translate(0%, 0%) scale(0.1);
    }
    to {
        transform: translate(0%, 0%) scale(1);
    }
}

.help-icon:hover .help-text {
    display: block;
}

.round-background { 
    width: 400px;
    height: 30px;
    display: flex;
}

.content {
  position: fixed;
  bottom: 1;
  color: #f1f1f1;
  width: 100%;
  /*padding: 20px;*/
}

.slideshow-container {
    position: relative;
    max-width: auto;
    max-height: auto;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: none;
    width: auto;
    height: auto;
}

.slides img {
    width: auto;
    height: 580px;
    display: block;
    text-align: center;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
    background-image: radial-gradient(rgba(0, 0, 0, 0.7), transparent);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.arrow.left {
    left: 50px;
}

.arrow.right {
    right: 50px;
}

figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;    
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    font-size: 130%;
    line-height: 130%;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;
    background-blend-mode:darken;
    background-image: radial-gradient(rgba(0, 0, 0, 0.7), transparent);
    font-family: 'Lobster', cursive;
    background-size: cover;
    padding: 6px 0;
    opacity: 0.85;
}