body{
    background-image: url("https://sadhost.neocities.org/images/tiles/stars5.gif");
}

.container {
  display: grid;
  width:845px;
  margin: auto;
  height: 90%;
  
  grid-template-areas: "header header header header"
                        "side content content aside"
                        "footer footer footer footer";
                        

   background-color: black;
  
  color: white;
  
  
}


.header {
    grid-area: header;
    text-align: center;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    padding: 2px;
    font-family:chapbook;
    font-size: 25px;
    line-height: 0.01;
}

.content {
    grid-area: content;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;

}

.side {
    grid-area: side;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;
    align-items: center;
    max-width: 150px;
    
    

}
.aside {
    grid-area: aside;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;
    
    

}
.footer{
    grid-area: footer;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;

}

 @font-face{
      font-family: 'chapbook';
  src: url(https://cinni.net/fruitykitty/Chapbook-Regular.otf);
    }
    
a:visited {
  color: white;
  
}


a:link {
  color: white;
  
}
