/* 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 {  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 180px 200px 200px 200px 200px 200px 200px 200px;
  background-color: white;
  padding: 5px;
  background-image: url("https://srilankusonline.neocities.org/Assets/Backgrounds/plyboard.jpg");
  background-size: cover;
}



.container div {

  /* !!!!!guidelines!!!!! */ 
  border: 1px solid lightblue;
  padding: 20px;
  font-size: 20px;
  text-align: center;
  background-color: transparent;
  
}

.header {
  text-align: center;
  grid-column: 1 / 6;
  grid-row: 1;
  background-image: url("https://srilankusonline.neocities.org/Assets/tex.png");
}

.backbody {
  grid-column: 1 / 3;
  grid-row: 2 / 6;
  background-image: url("https://srilankusonline.neocities.org/Assets/bio%20(1).png");
  background-clip: padding-box;
  background-attachment: fixed;
  background-size: 600px 700px;
  background-repeat: no-repeat;
}

.text {
  grid-column: 3 / 4;
  grid-row: 2 / 6;
  background-color: red;
  background-attachment: fixed;
}

.sidescroll {
  grid-column: 4 / 6;
  grid-row: 2/ 8;
  background-image: url("https://srilankusonline.neocities.org/Assets/bio%20(1).png");
  background-position-x: -180px;
  background-clip: padding-box;
  background-repeat: no-repeat;
  background-size: 300% 100%;
  padding: 0px;
  border: 0px;
}



header {
  text-align: center;
  
}

body {
  
  color: black;
  font-family: monospace;

}

p {
  color: black;
  font-weight: bold;
  mix-blend-mode: hard-mix;
}

h1 {
  color: darkseagreen;
  text-shadow: 1px 1px 5px red;
  font-weight: bold;
}

h2 {
  color: darkseagreen;
}

.special {
  color: white;
  font-weight: bold;
}

.2 {
  color:white
}


  
  