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

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

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

.title {
    /* color: darkslategrey; */
    color: #267282;
    text-align: center;
    font-size: 3rem;
}

.page_title {
    -webkit-text-stroke: 1px silver;
}

.sub_title {
    font-size: 2.75rem;
    -webkit-text-stroke: .5px silver;
}

.back_then {
    width: 45%;
    display: block;
    margin: 0 auto;
}

.introductory_paragraph {
    text-align: center;
    color: #267282;
    font-style: italic;
    font-weight: bold;
    font-size: 3rem;
    margin-left: 40px;
    margin-right: 40px;
    -webkit-text-stroke: 1.2px black
}

.image_caption {
    color: silver;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
}

.slideshow-container {
    margin-left: 20;
    margin-right: 20;
}

.mySlides img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.mySlides {
    width: 800px;
    height: 500px;
}

#slides {
    width: 800px;
    height: 500px;
    margin: 0 auto;
}

.prev-next-buttons {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 10px auto 0;
}

.prev,
.next,
.pause {
    font-size: 50px;
    cursor: pointer;
    color: #267282;
    user-select: none;
}

/* 
Button specific Settings
*/
.login_button {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
}

.glow-on-hover {
    width: 150px;
    height: 55px;
    font-weight: bold;
    font-size: large;
    font-style: italic;
    border: none;
    outline: none;
    color: #1a1512;
    cursor: -webkit-grab;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
    cursor: grabbing;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #267282;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}