mjPINK
body, body[data-theme="pink"] {
    --primaryColor: hotpink;
    --secondaryColor: maroon;
}
mjORANGE
body[data-theme="orange"] {
    --primaryColor: orange;
    --secondaryColor: brown;
}
mjPURPLE
body[date-theme="purple"]{
  --primaryColor:purple;
  --secondaryColor:navy;
}


body{background-color:rgb(13,13,13);color:rgb(190,190,190);font-family:"cs";margin:35px;cursor:default;}

::selection {
  color:#00A36C;
  background: gray;
}

/* Current/active navbar link */
.active {
  background-color: #04AA6D;
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}

.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.navbar a:hover {
  background: #ddd;
  color: black;}
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}