#tablist li[aria-selected="true"] {
    background-color: white;
    padding: 11px;  
  }
  
  div[aria-hidden="true"] {
  display: none;
  }
  #tablist {
    list-style: none;
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  #tablist li {
    font: normal 14pt "SourceSans3-Light";
    width: 40%;
    cursor: pointer;
    background-color: yellow;	
    border: 1px solid black;
    border-radius: 5px;
    
    padding: 11px;
  }
  
  #tablist li:focus, 
  #tablist li:hover {
    background-color: lightblue;
    cursor: pointer;
  }
  
  #tablist li[aria-selected="true"] {
    background-color: white;
    padding: 0.5em 0.5em;  
  }
  
  #tabcontent {
    background-color: white;
    border: 1px solid black; 
    margin-top: 10px;
    padding: 1em;
  }
  
  [aria-hidden="true"] {
    display: none;
  }
   
  [aria-hidden="false"] {
    display: block;
  }