/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* NOCHAS */


body {
  background-color:burlywood;
  color: whitesmoke;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  
  }
  
  #grad {
      background-image: radial-gradient(rgb(190, 123, 47), rgb(66, 10, 71), rgb(156, 20, 104));
    }

/*  --- backgrounds and bodies --- */
.bodydayout {
  align-items: center;
  background-image: linear-gradient(lightblue , green);
  color: black;
  font-family: Sans-serif;
  padding: auto;
  
}

.bodyevening {
  padding-top:5em;
  background-image: linear-gradient(rgb(7, 42, 55) , rgb(4, 12, 0));

    padding-top: 3em;
            padding-left: 3em ;
            padding-right: 3ACem ;
            padding-bottom: 3em;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: ;
    color:silver;

}
    p { Line-height: 1.2em ;
        text-indent: .75em ;
        padding-top: .5em ;
        padding-left:2.5em;
    }

    a{
        color:cornflowerblue;
    }

    h1{font-family:Verdana, Geneva, Tahoma, sans-serif;
    padding-left:1em;
        }
    h2{padding-left:.5em;}
    h3{}
}


.bodydarkforestgreen {
  align-items: center;
  background-image: repeating-linear-gradient(rgb(1,1,1),rgb(20, 78, 12),rgb(8, 170, 43),rgb(20, 78, 12)  );
  color:#e9c5b0 ;
  /* font: ; */

}

.bodysepulcherdark {
background-image: repeating-linear-gradient();

}






/*  --- boxes and headers --- */




  .bigbox {
      width: 40em;
      border: 2px solid #333;
      box-shadow: 8px 8px 5px #255533;
      padding: 9px 12px;
      background-image: linear-gradient(180deg, #759b7d, #72af9d 40%, #9d7ea0);
      margin-left: auto;
      margin-right: auto;
      align-self: center;
      }


  .medbox {
width: 36em;
border: 2px solid #333;
      boxshadow: 8px 8px 5px #15524f;
      padding: 9px 12px 9px 12px;
      background-image: linear-gradient(93deg, #c2956175,  #00000000, #00000000, #00000000, #c2956117, #0e000017,#00000000) ;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(43, 34, 34);
  border-width: 4px; border-color:  #9b7952;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

  .windowbox {
  width: 39em;
  border: 8px solid #333;
  box-shadow: 8px 8px 5px #444;
  padding: 8px 12px;
  background-image: linear-gradient(180deg, #986a44, #6a492f, #583d28 90% );
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  }


    .windowskybox {
      width: 39em;
      border: 2px solid  #66ffff;
     /* box-shadow: 1px 4px 4px 10px #cc9900 ; */
      padding: 2em 2em 2em 2em  ;
      width:31em;
  margin-left: auto;
  margin-right: auto;
  align-self: center;

      background-image: linear-gradient(180deg, #759b7d, #72af9d 40%, #9d7ea0);
      }

  .shadowbox {
  width: 39em;
  border: 1px solid #333;
  box-shadow: 8px 8px 5px #000000;
  padding: 8px 12px;
  background-image: linear-gradient(180deg, #636363, #0b0f25 40%, #180a0a);
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  }

      
  h1,h2 { Color:black;
  text-align: left;
  padding-left: 2em;
  font-family:Georgia, 'Times New Roman', Times, serif;
  }
  
  a {color: rgb(24, 82, 24);}  




/*  --- paragraphs and text--- */

#p0 {
    color:black;
     text-align: center;
    padding-left:3em }
#p1 { text-align: left;
  color:black;
  margin-left: 2em }
#p2 { text-align: left;
    color:beige;
    padding-left: 3em }
#p3 { text-align: left;
  color: black;
  padding-top: 6em
   }

#p4{
  color:#333;
  text-align: bottom;
  
  }

#pr {
color:beige;
text-align: right;

}
#p9001 {
  color:#55203a
}

#pr9001{
  color:#42172e ; /* peru?*/
  text-align:right;
 font-size: x-small;
}


  
  
  /*    
  .picframe{
  
  }
  
  
  /*  --- catagory --- */


  /*  --- catagory --- */

 /* Style The Dropdown Button, borrowed from w3schools.com 2024 */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}




  
