* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background-color: #bfc0c0;
    font-family: "VT323", monospace;
    font-size: 30px;
    color: #000000;
    font-weight: bold;
}

#body-container {
    width: 100%;
    height: 100vh;
}

.top-bar {
    background-color: #000080;
    color: antiquewhite;
    text-align: left;
    padding: 5px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    /* Add this line to vertically center items */
}

#flex-bar {
    display: flex;
}

.logo {
    padding: 5px;
    width: 50px;
    height: 50px;
    background-image: url(../imgs/banner1.jfif);
    border-radius: 100%;
    border: 2px solid black;
    background-size: cover;
    background-position: center;
    object-position: center;
}

.logo-text {
    padding: 5px;
}

#file-mock {
    word-spacing: 20px;
    padding: 4px;
    background-image: linear-gradient(red, yellow);
}

#box-container {
    display: flex;
    flex-direction: row wrap;
    height: auto;
    margin: 10px;
}

.buttonMock:hover {
    background-color: aliceblue;
}

#box-container a {
    list-style: none;
    text-decoration: none;
}

.buttonMock {
    height: 60px;
    width: 60px;
    background-color: #bfc0c0;
    border-style: solid;
    border-width: 1.5px;
    border-color: #000000;
    box-shadow: 5px 5px 5px;
    text-align: center;
    font-size: 0.8em;
    color: black;
    cursor: pointer;

}

#search-container {
    display: flex;
    border: 1px solid black;
    margin: 10px;
    height: 10%;
    box-shadow: 3px 3px 3px;
}

#search-container p {
    text-align: left;
    margin: 1.5%;
}

#search-container input {
    font-family: "VT323", monospace;
    border: 1px solid black;
    height: 50%;
    width: 50%;
    margin-top: 1%;
    font-size: 20px;
    padding: 10px;
}

main>img {
    padding: 15px;
    display: block;
    margin: auto;
    width: 150px;
    border-color: #000080;
    border-width: 10px;
    box-shadow: 5px 5px 5px 5px;
}

main {
    padding: 10px;
}

h1 {
    text-align: center;
}

#main-container {
    padding: 10px;
    width: auto;
    height: auto;
    border-style: solid;
    box-shadow: 5px 5px 5px;
}

footer {
    padding: 10px;
    text-align: center;
}

.flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.flex-container div {
    position: relative;
    aspect-ratio: 1 / 1;
    border: 2px solid black;
    margin: 10px;
    flex-grow: 1;
    flex-basis: 20%;
    max-width: 20%;
    box-sizing: border-box;
    background-position: center;
}

.flex-container div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

footer {
    color: antiquewhite;
    padding: 10px;
    text-align: center;
    background-color: #000080;
}

@media only screen and (max-width: 768px) {
    .navContainer1 .navContainer2 {
        max-width: 100%;
        /* Adjust for smaller screens */
    }
}