.tab {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    width: 100%;

    overflow: hidden;
  }
  
  .tab button {
    background-color: inherit;
    color: #330066;

    width: 45%;
    margin: 10px;

    border: none;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.5s;

    font-size: 30px;
    font-family: 'IM Fell DW Pica', serif;
    font-style: italic;
  }
  
  .tab button:hover {
    color: #fff;
    background-color: #33006679;
  }
  
  .tab button.active {
    color: #330066;
    background-color: #fff;
  }
  
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }