.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "recent content content"
	"menu content content";
  grid-template-columns: 8fr 8fr 8fr;
  grid-template-rows: 1fr 5fr 5fr;
  gap: 3px;
   background-color: gray;
  padding: 5px;
  width: 950px;
	border: 2px solid black;
	margin: auto;
}
.container div {
background-image:url('https://femcelish.neocities.org/resources/pattern150.gif');
   background-repeat: repeat-x repeat-y;
  padding: 10px;
}
.container div.header {
  grid-area: header;
  text-align: center;
}
.container div.recent {
  grid-area: recent;
}
.container div.content {
  grid-area: content;
}
.container div.menu {
	grid-area: menu;
}
body {
	 background-image:url('https://femcelish.neocities.org/resources/musicnotes.jpg');
}
p {
 color: white;
}
h2 {
 color: white;
}
 h3 {
 color: white;
}
h4 {
 color: white;
}
ul {
	float: right;
	color: white;
	list-style-image: url('https://femcelish.neocities.org/resources/cd3.gif');
}
/* this is for the recent speaker image BEETEEDUBS */
.speakers {
	float: right;
}
a {
	color: cyan;
}