* {
    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;
}

#hero-container {
    background-image: url(../imgs/vhero.jpg);
    background-position: center;
    background-size: cover;
    filter: blur(1px);
    margin: 20px;
    border: 2px solid black;
    height: 50%;
    box-shadow: 5px 5px 5px;
}

#flex-body {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10px;
}

aside {
    height: auto; /* Set to auto to ensure it fits its content */
    flex: 0 0 20%; /* Fix width to 20% */
    margin: 10px;
}

.nav-container select {
    font-family: "VT323", monospace;
    text-align: center;
    background-color: lightyellow;
    font-size: 30px;
    height: auto;
    width: 100%;
    border-width: 2px;
    box-shadow: 3px 3px 3px;
    border: 1px solid black;
    list-style: none;
}

.nav-container select:hover {
    background-color: aliceblue;
}

.main-content {
    border: 1px solid black;
    height: auto;
    flex: 1;
    margin: 10px;
}

main {
    padding: 10px;
    text-align: center;
}

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 */
    }
}