/* 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." */
.container {
  max-width: 1000px;
  margin: 50px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns:250px;
  
  }
#header {
    grid-row: 1/2;
    grid-column: 1/4;
    background-color: black;
    color: white;
    text-align: center;
    border: #F527C2 7px groove;
  }
#nav {
  grid-row: 2/3;
  grid-column: 1/2;
  height: max-content;
    background-color: black;
    color: white;
    text-align: left;
    border: #F527C2 7px groove;
  }
#stickers {
  grid-row:3/4;
  grid-column: 1/2;
  background-color: black;
    color: white;
    text-align: center;
    border: #F527C2 7px groove;
  }
#about {
 grid-row: 2/3;
 grid-column: 2/3;
 height: max-content;
 background-color: black;
  color: white;
    text-align: center;
    border: #F527C2 7px groove;
    font-size: 10px;
  }
#status {
  grid-row: 2/3;
  grid-column: 3/4;
  height: max-content;
  background-color: black;
    color: white;
    text-align: center;
    border: #F527C2 7px groove;
  }
#blog {
  grid-row: 3/4;
	grid-column: 3/4;
	  height: max-content;
	  background-color: black;
    color: white;
    text-align: center;
    border: #F527C2 7px groove;
  }
#image {
 	grid-row: 3/4;
	grid-column: 2/3;
	height: max-content;
	background-color: black;
    color: white;
    text-align: center;
    border: #F527C2 7px groove;
  }
#footer {
  grid-row: 4/5;
	grid-column: 1/4;
	
  }
body {
  background-image: url('http://dl5.glitter-graphics.net/pub/179/179815otg718ys9z.gif');
  background-attachment: fixed;
  background-repeat: repeat;
  color: white;
  font-family: Monaco;
}