/* The navigation bar */
@media screen and (max-width: 850px) {
.navbar111 {
visibility: hidden;
display: none;
}
}

.navbar111 {
    overflow: hidden;
    background-color: #1132bf;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar111 a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

}
.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

/* Change background on mouse-over */
.navbar111 a:hover {
    background: #ddd;
    color: black;

}

/* Main content */
.main111 {
    margin-top: 48px; /* Add a top margin to avoid content overlay */-




