.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "menu content funnies"
	"buttons content recent"
	"buttons content passions";
  grid-template-columns: 3fr 8fr 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/bricks5.gif');
   background-repeat: repeat-x repeat-y;
  padding: 10px;
}
.container div.header {
  grid-area: header;
  text-align: center;
}
.container div.menu {
  grid-area: menu;
}
.container div.content {
  grid-area: content;
}
.container div.funnies {
	grid-area: funnies;
}
.container div.recent {
  grid-area: recent;
}
.container div.buttons {
  grid-area: buttons;
}
.recentlist {
  	float: right;
	color: white;
  list-style-image: url('https://femcelish.neocities.org/resources/cd3.gif');
}
.speakers {
	float: right;
}
.stars {
	float: left;
}
.collection {
 width: 75%;
 height: 75%;
 overflow: scroll;
  }
body {
	 background-image:url('https://femcelish.neocities.org/resources/pattern145.gif');
}
p {
 color: white;
 font-size: 18px ;
}
h2 {
 color: white;
}
h3 {
 color: white;
}
h4 {
 color: white;
}
.menulist {
	float: right;
	color: white;
	list-style-image: url('https://femcelish.neocities.org/resources/GREENLIT.gif');
}
a {
	color: cyan;
}