/****begin mobile default - desktop below this section****/

html{
    background-color: #f4f2ea;
    margin: 1vw;
}
body{
    background-color: #fbf8ec;
    margin: 1vw;
    padding: 1vw;
    -webkit‑text‑size‑adjust: 100%;
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}


@font-face{
    font-family: 'barlowthin';
    src: url('barlow-latin-400-normal.woff2') format('woff2'),
        url('barlow-latin-400-normal.woff') format('woff')
        ;
}
@font-face{
    font-family: 'barlow';
    src: url('barlow-latin-500-normal.woff2') format('woff2'),
         url('barlow-latin-400-normal.woff') format('woff')
        ;
}
h1, h2, h3{
    font-family: barlow;
    font-weight: normal;
}
h4, h5, h6{
    font-family: barlowthin;
    font-weight: normal;
}

p{
    font-family: monospace;
}
header{
    margin: 30px;
}
header h1{
    font-size: 2.5em;
    
}
header h2{
    font-size: 2em;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 0.3em;
}
header a{
    padding: 0 1em;
    margin: .5em;
    display: inline-flex;
    text-decoration: none;
    border: dashed 2px #9e740d;
}
header a:hover{
    border:dotted 2px #9e740d;
}
.box1{
    background-color: #fbf8e9;
    padding: 2vw;
    margin: .5em;
    border: dashed 2px #f1f1c5;
}
.box1 h2{
    text-decoration: underline;
    text-decoration-style: wavy;
}
.box1 a:hover{
    border:dotted 2px #9e740d;
}

.excerpt{
    font-family: "Lucida Console", "Courier New", monospace;
    font-style: italic;
    padding: 1vw;
    background-color: #f9f9f8;
}
.excerpt img{
    width: 95%;
    margin: 1vw 2vw ; 
}
.poembox{
    font-family: "Lucida Console", "Courier New", monospace;
    font-style: italic;
    padding: 2vw;
    background-color: #f9f9f8;
    text-align: center;
}
.poembox img{
    width: 95%;
    margin: 1vw; 
}



h1{
    color: #707600;
}
h2{
    color: #9e860d;
    
}
h3{
    
    color: #9e740d;
}
h4{
    color: #9e630d;
}
h5{
    color: #9e630d;
    font-style: oblique;
    font-size: 1em;
}

p{
    color: #573c49;
    
    line-height: 150%;
}
p.bio{
    text-indent: 0;
}

a{
    color: #0d749e;
}

/*collapsible expandable play excerpt https://www.w3tutorials.net/blog/show-hide-divs-on-click-in-html-and-css-without-jquery/*/
.collapsible-input {
  display: none; /* Hide the checkbox */
}
/* By default, hide the content */
.collapsible-content {
  max-height: 0; /* Collapse content */
  overflow: hidden; /* Hide overflow when collapsed */
  transition: max-height 0.3s ease; /* Smooth transition */
}
/* When checkbox is checked, show content */
.collapsible-input:checked ~ .collapsible-content {
  max-height: 2000px; /* Adjust based on content size */
   
}
.collapsible-header {
  display: block; /* Make label a block element to fill width */
  padding: 1em; /* Add spacing */
color:#9e630d;
  cursor: pointer; /* Show pointer on hover */
  user-select: none; /* Prevent text selection on click */
  transition: background 0.2s ease; /* Smooth background change */
}
 
/* Hover effect */
.collapsible-header:hover {
  text-decoration:underline;
    text-decoration-style: wavy;
}

/* Make label focusable */
.collapsible-header {
  outline: none; /* Remove default focus ring (customize below) */
}
 
/* Add custom focus style for keyboard users */
.collapsible-header:focus-within {
  box-shadow: 0 0 0 2px #4d90fe; /* Blue focus ring */
}
/************END collapsible expandable excerpt styling****************/

/**end mobile default**/
    
/**styling for desktop**/
 @media only screen and (min-width: 768px) {
    
html{  
    margin: 4vw;
}
body{  
    margin:2vw;
}

header{
    margin: 5vw;
}
header h1{
    font-size: 2.5em;
}
header h2{
    font-size: 2em;
}
header a{
    padding: 0 1em;
    margin: .5em;
    display: inline-flex;
}
header a:hover{
    border:dotted 2px #9e740d;
}
.box1{
    background-color: #fbf8e9;
    padding: 2vw;
    margin: 4vw;
    border: dashed 2px #f1f1c5;
}
.box1 a:hover{
    text-decoration-style: wavy;
}
.box1 h2{
    text-decoration: none;
    
}
.excerpt{
    font-family: "Lucida Console", "Courier New", monospace;
    font-style: italic;
    background-color: #f9f9f8; 
}
.excerpt p{
    margin: 3vw;
}
.poembox{
    font-family: "Lucida Console", "Courier New", monospace;
    font-style: italic;
    background-color: #f9f9f8;
    text-align: center;
}
.poembox img{
    width: 49%;
    margin: 0;
}

h1{
    color: #707600;
}
h2{
    color: #9e860d;
    
}
h3{
    
    color: #9e740d;
}
h4{
    color: #9e630d;
}
h5{
    color: #9e630d;
    font-style: oblique;
    font-size: 1em;
}

p{
    color: #573c49;
    
    line-height: 150%;
}
p.bio{
    text-indent: 0;
}

a{
    color: #0d749e;
}

/*collapsible expandable play excerpt https://www.w3tutorials.net/blog/show-hide-divs-on-click-in-html-and-css-without-jquery/*/
.collapsible-input {
  display: none; /* Hide the checkbox */
}
/* By default, hide the content */
.collapsible-content {
  max-height: 0; /* Collapse content */
  overflow: hidden; /* Hide overflow when collapsed */
  transition: max-height 0.3s ease; /* Smooth transition */
}
/* When checkbox is checked, show content */
.collapsible-input:checked ~ .collapsible-content {
  max-height: 2000px; /* Adjust based on content size */
   
}
.collapsible-header {
  display: block; /* Make label a block element to fill width */
  padding: 1em; /* Add spacing */
color:#9e630d;
  cursor: pointer; /* Show pointer on hover */
  user-select: none; /* Prevent text selection on click */
  transition: background 0.2s ease; /* Smooth background change */
}
 
/* Hover effect */
.collapsible-header:hover {
  text-decoration:underline;
    text-decoration-style: wavy;
}

/* Make label focusable */
.collapsible-header {
  outline: none; /* Remove default focus ring (customize below) */
}
 
/* Add custom focus style for keyboard users */
.collapsible-header:focus-within {
  box-shadow: 0 0 0 2px #4d90fe; /* Blue focus ring */
}
/************END collapsible expandable excerpt styling****************/
    
    }
