body{
    background: #eee;
  }
  
  .tab-buttons {
    display: flex;
    padding-top: 1%;
    padding-left: 5%;
    align-items: start;
    justify-content: space-around;
  }
  
  .tab-button {
    background-color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    height: 40px;
  }
  
  .tab-button:hover {
    background-color: #dfe0e4;
  }
  
  .tab {
    display: none;
    width: 100%;
    padding: 35px;
    background-color: #ffffff;
  }

  .tab p{
    font-size: 1em;
    font-weight: 500;
  }

  .tab li{
    font-size: 1em;
    font-weight: 500;
  }
  
  .active-tab-button {
    background-color: #dfe0e4;
    transform: scaleY(1.1);
    transform-origin: bottom;
  }