/* Style the tab */

.tab {
  /*float: left;*/
  /*border: 1px solid #ccc;*/
  /*background-color: #f1f1f1;*/
  width: 70%;
  height: 300px;
  margin-top: 20px;
}

/* Style the buttons that are use to open the tab content */

.tab button {
  display: block;
  background-color: inherit;
  /*color: black;*/
  /*padding: 22px 16px;*/
  width: 100%;
  /*border: none;*/
  /*outline: none;*/
  /*text-align: left;*/
  cursor: pointer;
  tarnsition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 9px;
  font-size: 1.2rem;
  margin-bottom: 22px;
}

/* Change background color of buttons on hover */

.tab button:hover {
  background-color: #040b5db0;
}

/* Create an active/current"tab button"class */

.tab button.active {
  background-color: #040b5db0;
}

/* Style the tab content */

.tabcontent {
  float: left;
  padding: 0px 12px;
  /*border: 1px solid #ccc;*/
  width: 95%;
  /*border-left: none;*/
  height: auto;
  background-color: rgba(4,11,93,0.69);
  font-size: 1.5rem;
}

.tablinks {
  padding: 4px;
}

.tablinks:hover {
  color: red;
}

