::-webkit-scrollbar {
    background: #267282;
}

::-webkit-scrollbar-thumb {
    background: #1a1512;
}

body {
    visibility: hidden;
    background: linear-gradient(to bottom, #1a1512, #3a2f28);
    /* background: radial-gradient(
        #267282,
        #3a2f28); */
    min-height: 100vh;
    margin: 0;
}

.logo {
    color: #267282;
    text-align: center;
    font-size: 4rem;
    -webkit-text-stroke: 1px silver;
}

.nav_pane {
    display: flex;
    justify-content: space-around;
    /* spreads items evenly across full width */
    align-items: center;
    width: 100%;
    padding: 15px 0;
    font-size: 2rem;
    font-weight: bold;
}

.nav_pane a {
    -webkit-text-stroke: 1px darkslategrey;
    color: #267282;
    text-decoration: none;
}

.nav_pane a:hover {
    color: silver;
    /* optional hover color — your preference */
}

.current_page {
    font-style: italic;
    color: silver;
    font-size: 1.45rem;
    font-weight: bold;
    text-decoration: underline;
}

.home_sub_title {
    color: #267282;
    text-align: center;
    font-size: 3rem;
    /* font-size: 2.75rem; */
    -webkit-text-stroke: .5px silver;
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_page_paragraph {
    font-size: 25px;
    color: gray;
    -webkit-text-stroke: .5px #267282;
    margin-left: 40px;
    margin-right: 40px;
}

h3 {
    display: flex;
    justify-content: left;
    color: #267282;
    margin-left: 45px;
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 35px;
    -webkit-text-stroke: .5px #4B9CD3;
}

p {
    text-indent: 15px;
}

/* Photo Slide Feature */

.marquee-container {
    width: 100%;
    overflow: hidden;
    /* hides photos outside the visible strip */
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 5px;
    /* the ~5px gap between photos */
    width: max-content;
    /* row as wide as all photos combined */
    animation: scroll-left 75s linear infinite;
}

.marquee-track img {
    width: 400px;
    height: 250px;
    object-fit: contain;
    /* whole photo shown */
    flex-shrink: 0;
    /* stops photos from squishing to fit */
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* moves left by half = one full set */
}

.marquee-track.paused {
    animation-play-state: paused;
}

.marquee-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.pause {
    font-size: 70px;
    cursor: pointer;
    color: #267282;
    user-select: none;
}

.hidden {
    display: none;
}