.rubik-wet-paint-regular {
    font-family: "Rubik Wet Paint", system-ui;
    font-weight: 400;
    font-style: normal;
  }


.fundamentals{
    position: relative;
    z-index: 2;
    margin-left: 1%;
}





.Topics{
    font-family: monospace;
    font-weight: bold;
    font-size: 23px;
    
}
.part1btn{
    display: grid;
    grid-template-columns: repeat(5, 270px);
    row-gap: 20px;
}








  button {
    font-size: 18px;
    padding: 8px 12px;
    background: #24dbdbcc;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #00ffffcc;
    
}






.tablesIntroductory{
    background-color: #282c34;

   color: rgb(255, 255, 255);
    display: grid;
    
    grid-template-columns: 10px 650px 30px 650px 10px;
    grid-template-rows: repeat(8, 250px);
    grid-template-areas: 
    " . arithmeticOperator . logicalOperator . "
    ". . . . ."
    " . typeOperator  . bitwiseOperator ."
    " . typeOperator . bitwiseOperator ."
    " . comparisonOperator  .  ternaryOperator  . "
    " . comparisonOperator . .   . "
    " . optionalChaining . assignmentOperator ."
    " . nullishCoalescing  . assignmentOperator . "
       ;
  }

  .nullishCoalescing{
    grid-area: nullishCoalescing;
  }
  .optionalChaining{
    grid-area: optionalChaining;
  }
  .typeOperator{
    grid-area: typeOperator;
  }
  .ternaryOperator{
    grid-area: ternaryOperator;
  }
  .logicalOperator{
    grid-area: logicalOperator;
  }
  .comparisonOperator{
    grid-area: comparisonOperator;
  }
  .bitwiseOperator{
    grid-area: bitwiseOperator;
  }
  .assignmentOperator{
    grid-area: assignmentOperator;
  }
  .arithmeticOperator{
    grid-area: arithmeticOperator;
  }



  .headingp{
    font-size: 20px;
    font-family: monospace;
    font-weight: bolder;
    color:rgb(255, 255, 255);
  }


  #pTable thead th {
    background-color: #b9b9b9;
    color: #000000;
    padding: 10px;
    border: 1px solid #ddd;
  }
