html { background-color: #d2d1f0;
 	 background-image:url("lunarsanctuary.png");
background-attachment: fixed;
  background-position:center;
	background-size: cover;
	font-family: Verdana;
	font-size: 15px;
}

body {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-style: groove;
  border-width: 5px;
  border-color: #575080;
}

p {
  color:#4c397e
}

a {
  color:#4c397e
}

.container {
  display: grid;
  margin: auto;
  padding: 10px;
  border-style: groove;
  border-color: #575080;
  border-width: 10px;
  background-image:url("checkerboard2.png");
  justify-content: center;
  grid-template:
    "header header"
    "sidebar main"
    "footer footer"
    / 150px 1fr;
}

header { grid-area: header; padding: 5px; color:#4c397e; background-color:#d2d1f0; border-style: ridge; border-width: 5px; border-color: #897dad; }
aside { grid-area: sidebar; padding: 5px; color:#4c397e; border-style: ridge; border-width: 5px; border-color: #897dad;}
main { grid-area: main; padding: 5px; color:#4c397e; border-style: ridge; border-width: 5px; border-color: #897dad;}
footer { grid-area: footer; padding: 5px; color:#4c397e; border-style: ridge; border-width: 5px; border-color: #897dad;}



.line
{
background-image:url("blue2.gif");
background-repeat:repeat;
clear:both;
width:738px;
height:9px;
}


audio {
    background-color: #d2d1f0; /* Light purple */
    border: 2px solid #8c75c9; /* Dark purple */
    border-radius: 5px;
}

/* WebKit (Chrome, Safari, Edge) specific styling */
audio::-webkit-media-controls-panel {
    background-color: #d2d1f0; /* Light purple */
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-pause-button {
    background-color: #8c75c9; /* Dark purple */
    border-radius: 50%;
}

/* Firefox-specific styling (Limited control) */
audio::-moz-media-controls {
    background-color: #d2d1f0;
}


