/* Gallery.css?ver=<?=time()?> */

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: 36px;
    text-align: center;
    font-style: normal;
    background: url('/Images/BG/BGMain2025.png') repeat center top fixed;
    color: white;
    -webkit-background-size: 100vw auto;
    -moz-background-size: 100vw auto;
    -o-background-size: 100vw auto;
    background-size: 100vw auto;
    box-sizing: border-box;
    font-size: 16px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }



/* The grid: Four equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
    padding: 10px;
}

/* Style the images inside the grid */
.column img {
    opacity: 0.8;
    cursor: pointer;
}

.column img:hover {
    opacity: 1;
}

/* Clear floats after the columns */
.row {
    border-bottom: 2px solid white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* The expanding image container */
.container {
    width: 800px;
    padding-top: 8px;
    position: relative;
    text-align: center;
    margin: auto;
    display: none;
}

/* Expanding image text */
.imgName {
    padding-top: 8px;
    color: black;
}

/* Closable button inside the expanded image */
.closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.banner {
    cursor: pointer;
    height: 120px;
    aspect-ratio: 6/2.5;
}

.banner:hover{
    border: 2px dotted yellow;
}

.instructions {
    margin-top: -8px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 24px;
}

.imgSmall {
    /* aspect-ratio: 1.8/1; */
    width: 100%;
}

.imgLarge {
    width: 100%;
    max-width: 800px;
}

.controlbuttons {
    font-size: 1.0rem;
    margin-bottom: 8px;
}

#btnPrev {
    float: left;
    margin-left: 2.0em;
    height: 1.25em;
}

#btnPrev:hover {
    cursor: pointer;
    border: 1px dotted rgb(10,10,80);
}

#btnNext {
    float: right;
    margin-right: 2.0em;
    height: 1.25em;
}

#btnNext:hover {
    cursor: pointer;
    border: 1px dotted rgb(10,10,80);
}

