::-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;
}

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

.feed_paragraph {
    font-size: 2.35rem;
    font-weight: bold;
    font-style: italic;
    color: #267282;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

.feed-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.feed-column {
    flex: 1;
    /* each takes half the width */
}

.feed-header {
    color: #267282;
    text-align: center;
    font-size: 2.5rem;
    -webkit-text-stroke: .5px silver;
}

.feed-item {
    padding-bottom: 30px;
}

.feed-item-img {
    display: block;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feed-item-body {
    color: #267282;
    font-size: 1.3rem;
    line-height: 1.5;
}


.feed-item-title {
    color: #267282;
    font-size: 3.5rem;
    text-decoration: underline;
    font-weight: bold;
    -webkit-text-stroke: .3px silver;
}

.feed-item-date {
    color: silver;
    font-style: italic;
    font-size: 2rem;
}

.feed-item-host {
    color: #267282;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5rem;
}

#announcements-list {
    text-align: left;
}

#events-list {
    text-align: right;
}

#announcements-list .feed-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* everything left */
}

#events-list .feed-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* everything right */
}

.hidden {
    display: none;
}

.submission-box {
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid #267282;
    padding: 20px 30px 30px 30px;
}

#event-fields {
    font-size: 1.5rem;
    color: #267282;

}

.submission-box label {
    font-size: 1.5rem;
    color: #267282;
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

#submission-type {
    font-size: 1.5rem;
    color: #267282;
}

#submission-title {
    font-size: 1.5rem;
    color: #267282;
}

#submission-body {
    font-size: 1.5rem;
    color: #267282;
}

#submission-date {
    font-size: 1.5rem;
    color: #267282;
}

#submission-host {
    font-size: 1.5rem;
    color: #267282;
}

.submission-header {
    font-size: 2rem;
    font-style: italic;
    color: #267282;
    font-weight: bold;
}

.submission-submit {
    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;
}

.submission-submit: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;
}

.submission-submit:active {
    color: #000;
    cursor: grabbing;
}

.submission-submit:active:after {
    background: transparent;
}

.submission-submit:hover:before {
    opacity: 1;
}

.submission-submit: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;
    }
}

.admin_nav_hidden {
    display: none;
}