/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
*/
:root {
    --primary-color: #1d86bd;
    --secondary-color: #fb8500;
    --tertiary-color: #F9F6EF;
}

body {
    font-family: "Inter", sans-serif;
    background-color:#eee;
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.tertiary-bg {
    background-color: var(--tertiary-color);
}

h1 {
    font-size:3rem;
}

h2 {
    font-size:2rem;
}

h3 {
    font-size:1.5rem;
}

h4 {
    font-size:1.25rem;
}

.selected-nav-button {
    background-color: var(--secondary-color);
    color: black;
}

.padded-border {
    background-color: #00000066;
}

.container {
    max-width:1200px;
}

.upper-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 10;
}

.triangle {
    border-right: 100px solid transparent; /* Adjust size as needed */
    border-top: 100px solid var(--secondary-color); /* Adjust size and color as needed */
}

.upper-left .upper-left-text {
    position: absolute;
    bottom: 1rem;
    left: 0.5rem;
    transform: rotate(-45deg); /* Center and rotate the text */
    transform-origin: left;
    font-size: 20px; /* Adjust font size */
    font-weight: bold;
    white-space: nowrap;
}

.left-corner {
    position: absolute;
    z-index: 100;
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
    width: 130px;
    top: 20px;
    left: 10px;
    font-weight: bold;
    text-align: center;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-image {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.close {
    color: #fff;
    font-size: 3em;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

.ul {
    list-style: disc;
    margin-left: 1rem;
}

.most-top {
    z-index: 1000;
}

@media (min-width: 640px) {
    .most-top {
        z-index: 10;
    }
}

.bg-opacity-50 {
    opacity: 0.5;
}

.gallery {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

    .gallery img {
        max-width: 100%;
        cursor: pointer;
    }

        .gallery img:hover {
            max-width: 100%;
            cursor: pointer;
        }