body {
  background-image: url("background.jpeg");
  background-repeat: repeat-x;
  color: #3d933c;
  justify-content:center;
  font-family: "Press Start 2P";
  font-size: 12px;
  cursor: url("cursor.gif"), auto;
}
.box{
 max-width:100%;
 margin: 50px;
 display:grid;
 grid-gap: 10px;
 grid-template-columns: 2fr 8fr 2fr;
}
header,nav,aside,main,.stamps,.neighbours,.currents{
  border: 2px solid #3d933c;
  background-color: black;
  border-radius: 10px;
  opacity: 0.9;
}

header{
  grid-row: 1/2;
  grid-column: 1/4;
}
h1,h3{
  color: #590ad2;
  text-align: center;
}
nav{
  grid-row:2/3;
  grid-column: 1/2;
  max-height: 310px;
  height: max-content;
}
.navigation{
  text-align: left;
  line-height:20px;
  display: block;
}
.navigation a{
  text-decoration: none;
  padding-left: 10px;
}
.navigation a:hover{
  color: #AA77F2;
}
.navigation img{
  padding:40px 10px 10px 10px;
}
.neighbours{
  padding-left:10px;
  max-height: 100px;
}
main{
  grid-row:2/3;
  grid-column: 2/3;
  text-align: left;
  padding: 10px;
  line-height: 20px;
  max-height: 300px;
  display: block;
}

.stamps{
 grid-row: 3/3; 
 grid-column: 2/3;
 display: block;
 max-height: 100px;
}
.stamps img{
  margin-left:36px ;
  margin-top:10px ;
  margin-bottom: 10px;
}

aside{
  grid-row: 2/3;
  grid-column: 3/4;
  text-align:left;
  padding:5px 10px;
  max-height: 300px;
  display: block;
  overflow-y: scroll;
}
aside p{
  height: max-content;
}
.currents{
  grid-row: 3/3;
  grid-column: 3/3;
  max-height: 100px;
  overflow: scroll;
  padding-left: 10px;
  line-height: 20px;
}