* { box-sizing: border-box; font-family: "Roboto", sans-serif; } body { padding-top: 5vw; display: flex; background-color: #afafaf; margin: 0; } .navbar { background-color: #3d898c; height: 60px; display: flex; align-items: center ; padding: 0 20px; position: fixed; /* Fix the navbar at the top of the page */ top: 0; /* Position it at the very top */ width: 100%; /* Make it span the full width of the page */ z-index: 1000; /* Make sure it's above all other elements */ } .navbar-nav { list-style: none; display: flex; align-items: center; justify-content: center; /* Center the links horizontally */ height: 100%; width: 100%; /* Make it span the full width of the navbar */ } .nav-item { margin-right: 20px; } .nav-link { color: #fff; text-decoration: none; font-size: 18px; } #data-container { width: 80%; margin: 0 auto; padding: 20px; background-color: #f5f5f5; border: 1px solid #ccc; }