.topnav {
    display: flex;
    background-color: #191a1b;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }

  a {
    font-family: 'Roboto', sans-serif;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    /* background-color: #0B91F3; */
    box-shadow: 0px 15px 20px rgba(11, 113, 243, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #0B91F3;
    color: white;
  }

  .title {
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
    margin-left: 16px;
  }

  .title:hover {
    /* background-color: #0B91F3; */
    box-shadow: 0px 15px 20px rgba(11, 113, 243, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }

