* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Lucida Console", "Courier New", monospace;
  }

.body-scroll{
    overflow-y:scroll;
    margin-bottom: 50px;
  }

  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color:#014c6e;
    font-family: "Lucida Console", "Courier New", monospace;
  }
  
  .title-heading {
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 25px;
  }

  .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: 16px;
    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;
  }
  .meet-the-team-wrapper{
    /* margin-top: 20px; */
    text-align: center;
    background-color: #1F7A8C;
    /* margin-bottom: 50px; */
    padding-bottom: 50px;
  }

  body {
    font-family: "Lucida Console", "Courier New", monospace;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #54c0c4, #54c0c4);
    color: black;
  }