/* Style the tab */
.tab {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
overflow: hidden; 
width: 100%;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 26px;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 50px;
  margin-left: 10px;
  margin-right: 10px;

}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #181831;
}

/* Create an active/current tablink class */
.tab button.active {
  border-radius: 50px;
  border: 1px solid #181831;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}