 .pageBody {
  background-image: linear-gradient(to bottom, #000000, #3e2526, #78483c, #ae734a, #d9a755, #e5bb5a, #eed161, #f5e769, #f1da64, #edce60, #e8c25c, #e2b659);
   color: white;
   font-family: Helvetica, Arial, sans-serif;
 }

 .mainText{
   color: white;
   font-family: Helvetica, Arial, sans-serif;
   text-decoration: none;
 }

 .backgroundVid {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover; /* Cover the entire container */
 }

 .mainPart {
   z-index: 100;
   
 }

 .footer {
   height: 10%; /* Adjust height as needed */
   width: 100%;
   position: fixed; 
   bottom: 0;
   z-index: 1000;
 }

 .header {
   height: 10%;
   width: 100%;
   z-index: 1000;
 } 

 .sidebar {
  height: 100%;
  width: 250px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
 }

 .appSection {
  width: calc(100% - 250px);
  background-image: linear-gradient(to right, #000000, #3e2526, #78483c, #ae734a, #d9a755, #e5bb5a, #eed161, #f5e769, #f1da64, #edce60, #e8c25c, #e2b659);
  height: 100%;
  padding: 20px;
  position: fixed; /* Positioned to the right of the sidebar */
  top: 0;
  left: 250px; 
  border-style: solid; /* Ensure the border is visible */
  border-width: thin; /* Set the border width to thin */
  border-color: white; /* Set the border color to white */
 }

 .appSectionInner {
  background-color: black;
  color: white;
 }

 .navbarLinks:hover {
  color: #f5e769;
 }

 .navbarLinksb:hover {
  color: #000000;
 } 

 
