#nav-bar {
    background: #051b32;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#content-filler {
    height: fit-content;
    min-height: 58.5vh;
}

body {
    background: #004d8b;
    height: 100%;
    margin: 0;
}

html {
    height: 100%;
    margin: 0;
}

.content-box {
    background: #002a4c;
    color: white;
    padding: 10px;
    margin: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.content-header {
    font-size: 18px;
    font-weight: bold;
}

.content-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.content-box.active .content-body {
    max-height: 200px;
    opacity: 1;
    padding: 10px;
}

.content-box:hover {
    background: #004a7c;
}

.border-box {
    border: 2px solid #015fa9;
}

.list {
    justify-content: left;
}

main {
    color: #FFF;
    background: #003b67;
    padding: 10px;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px;
    flex-wrap: wrap;
}

.gallery-item {
    margin: 5px;
    height: 25vh;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.block-line {
    display: flex;
    flex-direction: column;
}

a {
    color: #add8e6 !important;
    text-decoration: none !important;
    font-size: 20px !important;
}

a:hover {
    color: lightgray !important;
    text-decoration: none !important;
}

a:visited {
    color: #add8e6 !important;
    text-decoration: none !important;
}

a:active {
    color: black !important;
    text-decoration: none !important;
}

/* chat pasting */

