/* Style the tab */
.tab {
  overflow: hidden;
  border: 2px solid #000;
  width:400px;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  -moz-border-radius: 15px;
  
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.3s;
  font-family:arial,sans-serif; font-size:15px; color:#000000;
  font-weight:bold;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #f8f5da;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #f8f5da;
}

/* Style the tab content */
.tabcontent {
  display: none;
}