/* 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." */
   
  .grid-container {
    display: grid;
    grid-template-areas:
      'header header'
      'sidebar main'
      'footer footer';
    grid-gap: 10px;
}
 
 body {
  background-color: #2215D1;
  background-image: url(https://pinesisak.neocities.org/saturn.png);
  background-repeat: repeat-x;
  background-size: 100%;
  background-attachment: fixed;
  background-position: top center;
  color: white;
  font-family: Alef;
  margin-left: 24%;
  margin-right: 24%;

}
.grid-container > div {
    background-color: #556BD9;
    border: 15px solid #4358c4;
    border-radius: 10px;
    border-style: outset;
    padding: 25px;
    justify-content: flex-start;
}

  /* assign your elements to the areas you defined in the grid-template rule: */
  .grid-container > .item1 { 
    grid-area: header; 
    background-color: transparent;
    border: none;
    padding: 0;
  }
  .item2 { grid-area: sidebar; }
  .item3 { grid-area: main; }
  .item4 { grid-area: footer; } 