@font-face {  
  font-family: 'dogica';  
  src: url('../fonts/dogica.ttf') format('truetype');  
  font-weight: 400;  
  font-style: normal;  
}  

@font-face {  
  font-family: 'dogicabold';  
  src: url('../fonts/dogicabold.ttf') format('truetype');  
  font-weight: 400;  
  font-style: bold;  
} 

@font-face {  
  font-family: 'dogicapixel';  
  src: url('../fonts/dogicapixel.ttf') format('truetype');  
  font-weight: 400;  
  font-style: normal;  
}  

@font-face {  
  font-family: 'dogicapixelbold';  
  src: url('../fonts/dogicapixelbold.ttf') format('truetype');  
  font-weight: 400;  
  font-style: bold;  
} 

body {  
  font-family: 'dogicapixel';
  background-color: #FFFFFF;
  font-size: 17px;
  line-height:1.4;
}

b {
  font-family: 'dogicapixelbold';
}

a:link {
  text-decoration: none;
  color: #FFFFFF;
}

a:visited {
  text-decoration: none;
  color: #FFFFFF;
}

a:hover {
  text-decoration: none;
  color: #AAAAAA;
}

a:active {
  text-decoration: none;
  color: #FFFFFF;
}

* {
  box-sizing: border-box;
}

.grid-container {
  display: grid;
  grid-template-areas:
  'header'
  'menu'
  'main'
  'facts'
  'footer';
  background-color: white;
  gap: 10px;
}

.header {
  grid-area: header;
  background-color: #000000;
  text-align: center;
  color: #ffffff;
}

.header > h1 {
  font-size: 40px;
}

.menu {
  grid-area: menu;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #d35fbc;
  color: #ffffff;
}

.menu li:hover {
  background-color: #00ffff;
}

.content {
  grid-area: main;
}

.content > h1 {
  font-size: 30px;
  margin-bottom: 7px;
}

.content > p {
  margin-bottom: 7px;
}

.facts {
  grid-area: facts;
  border: 1px solid #d35fbc;
  background-color: beige;
  padding: 10px;
}

.facts > h2 {
  font-size: 20px;
}

.facts li {
  margin-bottom: 5px;
}

.footer {
  grid-area: footer;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
