* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
  }

.body-scroll{
    overflow-y:scroll;
    margin-bottom: 50px;
  }

  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #022B3A;
    font-family: "Montserrat", sans-serif;
  }
  
  .title-heading {
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .nav-links a:hover:not(.active) {
    background-color: #1F7A8C;
  }
  
  .nav-links li a.active {
    background-color: #4caf50;
  }

  .documents {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }

  .documents h1 {
    /* padding: 10px; */
    text-transform: uppercase;
  }

  .documents h2 {
    padding: 15px;
  }

  .object-title-padding{
    padding: 25px;
  }

  .videos {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }

  .videos h1 {
    /* padding: 10px; */
    text-transform: uppercase;
  }

  .videos h2 {
    padding: 15px;
  }
