 body {
     margin: 0;
     font-family: Arial, sans-serif;
     background-color: #131f24;
     color: white;
 }
#appBar {
    background-color: #131f24;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    height: 100px;
    position: fixed;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
 #btnHome{
    padding-top: 120px;
     background-color: #131f24;
     display: flex;
     justify-content: center;
     align-items: center;
     /* height: 80px; */
     /* position: fixed; */
     /* top: 80; */
     width: 100%;
     /* z-index: 1000; */
 }

 #homeButton {
     background-color: #6f4ea1;
     color: #eeee;
     font-size: 20px;
     display: flex;
     align-items: center;
     padding: 10px 20px;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.2s ease-in-out;
     text-decoration: none;
 }

 #homeButton:hover {
     background-color: #5a3a86;
     color: white;
 }

 .content {
     padding: 30px 20px;
 }

 .section {
     background-color: #2e3b42;
     padding: 20px;
     border-radius: 10px;
     margin-bottom: 20px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     border: 1px solid #444;
 }

 .section h1 {
     font-size: 24px;
     margin-bottom: 15px;
 }

 .section p,
 .section ol,
 .section ul {
     line-height: 1.6;
     color: #cccccc;
 }

 .section strong {
     color: white;
 }

 .divider {
     border: 0;
     height: 1px;
     background: #444;
     margin: 20px 0;
 }