.containerA {
    width: 100%;
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
  }
  
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .tab {
    background-color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1em;
    margin: 0 5px;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
  
  .tab.active,
  .tab:hover {
    background-color: wheat;
  }
  
  .contentA {
    display: flex;
    justify-content: space-between;
    border-color: white;
  
  }
  
  .description {
    background-color: wheat;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50%;
    text-align: left;
  }
  
  .profile-pics img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 5px;
  }
  .videoA {
    width: 45%;
    text-align: right;
  
  
  }
  
  .videoA-container {
    position: relative;
  
    overflow: hidden;
  
    background: #fffdfd;
    border-radius: 20px;
  }
  
  
  .videoA-container iframe {
  
    top: 0;
    left: 0;
  }
  
  
  a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }