.tab-container{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 40px 50px  40px  40px;
    background: #fff;
    margin: 0 20px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .tab-container .topic{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .tab-content{
    display: flex;
    justify-items: center;
  }
  .tab-content .list{
    display: flex;
    flex-direction: column;
    width: 20%;
    margin-right: 50px;
    position: relative;
  }
  .tab-content .list label{
    height: 60px;
    font-size: 22px;
    font-weight: 500;
    line-height: 60px;
    cursor: pointer;
    padding-left: 25px;
    transition: all 0.5s ease;
    color: #333;
    z-index: 12;
  }
  #home:checked ~ .list label.home,
  #blog:checked ~ .list label.blog,
  #help:checked ~ .list label.help,
  #code:checked ~ .list label.code,
  #about:checked ~ .list label.about{
    color: #fff;
  }
  .tab-content .list label:hover{
    color: #6d50e2;
  }
  .tab-content .slider{
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    border-radius: 12px;
    background: #6d50e2;
    transition: all 0.4s ease;
  }
  #home:checked ~ .list .slider{
    top: 0;
  }
  #blog:checked ~ .list .slider{
    top: 60px;
  }
  #help:checked ~ .list .slider{
    top: 120px;
  }
  #code:checked ~ .list .slider{
    top: 180px;
  }
  #about:checked ~ .list .slider{
    top: 240px;
  }
  .tab-content .text-content{
    width: 80%;
    height: 100%;
  }
  .tab-content .text{
    display: none;
  }
  .tab-content .text .title{
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .tab-content .text p{
    text-align: justify;
  }
  .tab-content .text-content .home{
    display: block;
  }
  #home:checked ~ .text-content .home,
  #blog:checked ~ .text-content .blog,
  #help:checked ~ .text-content .help,
  #code:checked ~ .text-content .code,
  #about:checked ~ .text-content .about{
    display: block;
  }
  #blog:checked ~ .text-content .home,
  #help:checked ~ .text-content .home,
  #code:checked ~ .text-content .home,
  #about:checked ~ .text-content .home{
    display: none;
  }
  .tab-content input{
    display: none;
  }