


body.dark-theme {
    background-color: rgb(57, 74, 57);
    color: #000000;
  }
  

  body.dark-theme nav {
    background-color:rgb(57, 74, 57);
  }
  body.dark-theme h1{
    color: darkseagreen;
  }

  body.dark-theme a {
    color: darkseagreen;
  }
  body.dark-theme a.no-dark {
    color: initial; 
    text-decoration: underline; 
  }

  body.dark-theme .theme-button {
    border: 1px solid #923b3b;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: darkseagreen;  /* Set the background color of the button */
    color: white;  /* Set the text color of the button */
    border-radius: 5px;  /* Round the corners of the button */
    transition: background-color 0.3s ease;
  }

  body.pastel-theme {
    background-color: #fff6f9;
    color: #4a4a4a;
  }
  
  body.pastel-theme nav {
    background-color: #ffe3ec;
  }
  
  body.pastel-theme a {
    color: #ec7ea8;
  }

 
  