@font-face{
  font-family: "newspaper";
  src: url("https://k-log.neocities.org/Newspaperfont.ttf");
}
body{
  background-color: rgb(255	240	215);
  color: rgb(111, 60, 6);
  font-size: 1.5em;
  margin-top: 100px;
  font-family: "newspaper"
}
.grid-container {
  display: grid; 
  grid-template-rows: 15% 85%;
  grid-template-columns: 25% 50% 25%;
  grid-template-areas: 
  "box1 box1 box1"
  "box2 box3 box4";
  
}
ul{
  list-style: none;;
}
li{
  float: left;
  gap: 5px;
}
.box1{
  justify-content: start;
}
#side-image{
  width: 95% ;
}
h6{
  font-weight: normal;
  font-size: 1.2em;
}
#icon{
  width: 80px;
}
#title{
  font-size: 2em;
  font: bold;
}
#blogs{
  margin-left: 30%;
}
#menuitem{
}
a{
  
  color: rgb(120, 145, 105);
  font-weight: bold;
}
::selection{
  background-color: rgb(111, 60, 6);
  color: rgb(255	240	215);
}
::-moz-selection{
  background-color: rgb(111, 60, 6);
  color: rgb(255	240	215);
}