/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: #056ab5;
    position: fixed; /* Set the navbar to fixed position */
    bottom: 0;
    width: 100%; /* Full width */
    text-align:center;
}

/* Links inside the navbar */
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 10px 16px 0px 16px;
text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
    background: #ddd;
    color: black;
}

/* Main content */
.mains {
    margin-bottom: 30px;/* Add a top margin to avoid content overlay */
}