.tab {
    overflow: hidden;
    border: 1px solid rgb(0,101,45);
    background-color: rgb(0,101,45);
    height: 43px;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: white;
    height: 43px;
  }

  @media only screen and (max-width: 1000px) {
    .tab button {
      height: 100px;
    }
  }

  @media only screen and (max-width: 1000px) {
    .tab {
      height: 100px;
    }
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: white;
    color: rgb(0,101,45);
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: white;
    color: rgb(0,101,45);
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid rgb(0,101,45);
    border-top: none;
  }