/* Style for the body */
body {
    display: flex;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  /* Style for the top banner */
  .top-banner {
    background-color: #339EFF;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0; /* Start the banner at the top of the page */
    z-index: -1; /* Set a negative z-index to position the banner behind the nav bar */
  }
  /* Style for the top header */
  .top-header {
    color: #fff;
    margin-left: 200px; /* This should be equal to the width of the navigation bar */
    padding: 20px; /* Add space between the top header and the navigation bar */
    position: fixed; /* Fixed position to keep it at the top of the page */
  }

  /* Style for the navigation bar */
  .sidenav {
    background-color: #333;
    height: 100vh;
    width: 200px;
    padding-top: 40px;
    position: fixed;
    z-index: 1; /* Set the z-index to 1 to position the navigation bar above the Main Content and the Top Banner */
  }

  /* Style for the navigation bar links */
  .sidenav a {
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
  }

  /* Style for the navigation bar links on coursor hover */
  .sidenav a:hover {
    background-color: #555;
  }

  /* Main content style to add some padding to the right */
  .main {
    margin-top: 50px;
    margin-left: 200px; /* This should be equal to the width of the navigation bar */
    padding: 20px;
    z-index: 2;
  }

  /* Style for the contact-image icons */
  .contact-image {
    width: 16px;
    height: 16px;
    margin-right: 0.5em; /* Add some spacing between the image and the text */
  }