     body {
	background-image:url('/images/risoblack.png'); /* from: https://hillhouse.neocities.org/materials/backgrounds/ */ 
	background-repeat:repeat
}


    main {
border: 3px double #6d675c;
background-image: url(/images/papertiles2.png);
width:65%;
min-height:300px;
padding-top:15px;
padding-bottom:20px;
padding:1em 2em;
}

header { 
margin-bottom:20px;
display: inline-block;
padding: 0em 2em;
border: #6d675c double 3px;
background: #f6eac6;
}


/*CLASSES*/

  img.handle {height:40px;  
  }
  
  .musing {
  text-align: justify;
  }
  
  img.link:hover {
  filter:drop-shadow(1px 1px 1px rgba(0,0,0,0.7))
  }
  
.grid {    /* https://developer.mozilla.org/en-US/docs/Web/CSS/repeat */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
  gap: 1em;
  text-align: center;
  margin-bottom: 3em;
}


/*QUERIES*/

 @media screen and (max-width: 750px) {
   
    img.handle { height:30px; }
   
   header { }
    
   main { width:90%;
     font-size:14px;
       padding-top:15px;
       padding-bottom:20px;
       padding:0em;
     
   }
 }