html, body {
    min-height:100%;
    width:100%;
    padding:0;
    margin:0;
}

body {
    background: #1E1F23;
    color:#ddd;
}

h1 {
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

a {
    color:#ddd;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

#mainNav {
    background-color:#333;
    color:#ddd;
    line-height:4rem;
    font-size: 1.1rem;
    padding-left:2rem;
    position: sticky;
    top:0;
    z-index:5;
}
#mainNav a {
    color:#ddd;
    text-decoration: none;
    padding:1rem;
}
#mainContent {
    padding:0.5rem 1rem;
}
/* Start Chat GPT*/

body {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .thumbnail {
    width:300px;
    height:400px;
    margin: 10px;
    cursor: pointer;
    position: relative;
    background:#333;
    text-align: center;
  }

  .thumbnail img {
    max-width: 300px;
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .thumbnail .thumbLabel {
    position:absolute;
    bottom: 0;
    left:0;
    right:0;
    padding:0.5rem;
    font-size: 1.1rem;;
    color: #eaeae9;
    background:rgba(0,0,0,0.3);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    z-index:1;
    text-align: left;
  }
  #modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 4rem;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
  }
  #modal-content {
    margin: auto;
    display: block;
    max-height:90%;
    max-width: 90%;
    padding: 20px;
    text-align: center;
  }
  #modal-content img {
    max-width: 100%;
    max-height: 80vh;
  }
  .modal-close {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
  }

  .modal-prev,
  .modal-next {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10% 5%;
  }
  .modal-prev {
    left: 20px;
  }
  .modal-next {
    right: 20px;
  }

  /* Footer Styles */
  #confirmAge {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:#121212;
    z-index:999;
  }

  #confirmAge .banner {
    position:fixed;
    top:40%;
    background:#000;
    border-top:1px solid #d1ce00;
    border-bottom:1px solid #d1ce00;
    width:100%;
    color:#fff;
    line-height:50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #confirmAge .banner span {
    margin-left:15px;
    vertical-align: middle;
  }

  #confirmAge .banner button {
    background:#d1ce00;
    border-radius: 10px;
    color:#000;
    margin-right:15px;
    padding:9px 10px;
    font-size:1em;
    vertical-align: middle;
    cursor: pointer;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
  }