.tabs {
    border: 1px solid #ef7f4d ;
    display: flex;
  }
  
  .tabs--sidebar {
    width: 200px;
    flex-shrink: 0;
    background: #ef7f4d;
  }
  
  .tabs--button {
    display: block;
    padding: 10px;
    background: #212529;
    border: none;
    width: 100%;
    outline: none;
    cursor: pointer;
  }
  
  .tabs--button:active {
    background: black;
  }
  
  .tabs--button:not(:last-of-type){
    border-bottom: 1px solid #ef7f4d;
  }
  
  .tabs--button--active {
    font-weight: bold;
    border-right: 2px solid rgb(0, 0, 0);
    background: #fa7d17;
  }
  
  .tabs--content {
    padding: 15px;
    font-size: 0.8rem;
    display: none;
  }

  .tabs--content--active {
    display: block;
  }

.font {
    font-weight: bold;
    text-align: center;
}

.font3 {
  font-size: x-large;
  text-align: center;
}