/* 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." */



body {
  background-image: url(https://64.media.tumblr.com/9bc9b36cc2b4efdc2fd52fd64e724112/0eb85bc2819d42e4-48/s540x810/f92406c31cc0bff40c6ef141c6899c8d6a507f3a.pnj);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  cursor: url(https://hillhouse.neocities.org/materials/cursors/images/planchette.png);
}

#img1{
  float: right;
  }
  
   #img2{
  float: left;
  }
  
  #img3 {
    float: right;
    }
  
  
  
  
  
.container {
  margin: 30px;
  margin-left: 200px;
  margin-right: 200px;
  display: grid; 
  grid-template-rows: 100px 300px;
  grid-template-columns: 1fr 3fr;
  grid-gap: 10px;
  grid-template-areas:
  'header header'
  'aside main'
  'footer footer';
}

 .item-1 {
  grid-area: header;
  background-color: black;
  border: red dotted;
  color: red;
  padding: 5px;
}

.item-2 {
  grid-area: main;
  background-color: black;
  border: red dotted; 
  height: 480px;
  color: red;
  padding: 30px
}

.item-3 {
  grid-area: aside;
  background-color: black;
  border: red dotted;
  height: 500px;
  color: red;
  padding: 20px
} 







