/* 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." */
body {
  background-color: #4F4F4F;
  font-size: 20px;
  font-family: "Josefin Slab";
  margin: 0;
  background-image: url("logo.png");
  background-repeat: repeat;
  background-attachment: fixed; 
  background-size: 90px;
  overflow-x: auto;
}
p, li {
  line-height: 1.2em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
  font-weight: bold;
}
hr {
  border: solid maroon;
  border-width: 2px 0 0 0;
}
img {
  max-width: 100%;
}

figure {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1em;
}

li:has(details) {
    list-style-type: none;
}

.container {
  display: flex;
  gap: 10px;
  padding: 20px;
  flex-wrap: nowrap;
  height: 100%;
  margin-top: 120px; 
    }

.box {
  outline-color: white;
  outline-style: inset;
  outline-width: 3px;
  outline-offset: 0;
  background-color: dimgrey;
  overflow: scroll;
  opacity: .85;
  vertical-align: top;
  width: 33%;
  height: 600px;
  overflow-y: auto;
}

.box2 {
  outline-color: white;
  outline-style: inset;
  outline-width: 2px;
  outline-offset: 0;
  background-color: transparent;
  overflow: scroll;
  opacity: 1;
  vertical-align: top;
  width: 100%;
  height: 100%;
  gap: 20px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
}

.box2 p {
  font-weight: normal;
}

.box2 summary {
  list-style: none;
}
.box2-order {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

a {
  color: maroon;
  font-weight: bold;
  filter: drop-shadow(1px 1px 0 white) 
    drop-shadow(-1px 1px 0 white)
    drop-shadow(1px -1px 0 white)
    drop-shadow(-1px -1px 0 white);
}
img.unplayed {               
   opacity: 0.3;
   filter: alpha(opacity=40);
   zoom: 1;  /* needed to trigger "hasLayout" in IE if no width or height is set */ 
}
img.unplayed:hover {
   opacity: 1;
}

.imgtxteagle {
  position: absolute;   
  top: 20px;            
  left: 20px;
  width: 200px;
  display: inline-block;
  z-index: 10;
}
.imgtxteagle span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.5rem;
  color: maroon;
  font-family: "Josefin Slab";
  filter: drop-shadow(1px 1px 0 white) 
    drop-shadow(-1px 1px 0 white)
    drop-shadow(1px -1px 0 white)
    drop-shadow(-1px -1px 0 white);
}
.imgtxteagle:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxteagle:hover img, .imgtxt:focus img {
}

.imgtxtapple {
  position: absolute;   
  top: 20px;            
  left: 250px;
  width: 130px;
  display: inline-block;
  z-index: 10;
}

.imgtxtapple span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.5rem;
  color: maroon;
  font-family: "Josefin Slab";
  filter: drop-shadow(1px 1px 0 white) 
    drop-shadow(-1px 1px 0 white)
    drop-shadow(1px -1px 0 white)
    drop-shadow(-1px -1px 0 white);
}
.imgtxtapple:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxtapple:hover img, .imgtxt:focus img {
}