@font-face {
src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
font-family: hearts;
}

/**/

.wip {
  text-align: center;
  padding: 25px;
  width: 100%;
  background-color: purple;
}

body {
  background-color: #ebd7ff;
  color: #ffffff;
  font-family: hearts;
  font-size: 1.3em;
}

.container {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-template-rows: 100%;
  gap: 30px ;
  grid-auto-flow: row;
  grid-template-areas:
    "content menu";
  width: 960px;
  height: 1210px;
  margin: 25px auto;

}