/* 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." */
@font-face {
  font-family: "Nishiki-teki Regular";
  src: url("NishikiTeki.woff");
}
body {
  background-color: #FF95CD;
  color: #79003C;
  font-family: Nishiki-teki Regular;
}
hr {
  border: 2px dashed #200000;
} 
p {
  font-size: 13pt;
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content";
  grid-template-columns: 1fr 3fr;
  gap: 15px;
  padding: 5px;
}
.container div {
  padding: 10px;
  border: 4px dashed #7A0053;
}
.container div.header {
  grid-area: header;
  text-align: center;
}
.container div.menu {
  grid-area: menu;
}
.container div.content {
  grid-area: content;
}