/* 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://files.catbox.moe/rvpts4.jpg");
  background-repeat: repeat;
  color: black;
  font-family: Verdana;

}
 welcome, ocgifs, octhingy, aboutme, nerd, art, imagecorner, footer, header, stamp, websites, guestbook { 
   border: black 2px solid;
   background-color: pink;
   border-radius: 5px;

 }
 
 header {
  grid-row: 1 / 2;
  grid-column: 1 / 4;

 }
 
 ocgifs {
   grid-row: 2 / 5;
   grid-column: 1 / 2;
   
 }
 
 welcome {
  grid-row: 2 / 5;
  grid-column: 2 / 3;
 }
 
 aboutme {
   grid-row: 2 / 3;
   grid-column: 3 / 4;
 }
 
 nerd {
   grid-row: 3 / 4;
   grid-column: 3 / 4;
 }
 
 art {
   grid-row: 4 / 5;
   grid-column: 3 / 4;
 }
 
 octhingy {
   grid-row: 5 / 6;
   grid-column : 1 / 2;
 }
 
 stamp {
   grid-row: 5 / 6;
   grid-column: 2 / 3;
 }
 
 guestbook {
   grid-row: 6 / 7;
   grid-column: 1 / 2;
 }
 
 websites {
   grid-row: 6 / 7;
   grid-column: 2 / 3;
 }
 
 imagecorner {
  grid-row: 5 / 7; 
  grid-column: 3 / 4;
 }
 
 footer {
   grid-row: 7 / 8;
   grid-column: 1 / 4;
 }
 
 
   
 .container {
   max-width: 1000px;
   justify-content: center;
   border-radius: 5px;
   grid-gap: 10px;
   grid-template-columns: 100px auto 100px;
   margin: 50px auto;
   background-color: white;
   display: grid;
   padding : 10px;
   
 }