body{
  background-color:limegreen;
}
H1{ 
  color:black;
  margin-right:40px
}
P{
  font-size: 40px:
}
/* LEFT BANNER */
.left-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 100vh;
  background-image: url("vhssleeves.png"); /* or images/vhssleeves.png */
  background-repeat: repeat-y;
}

/* RIGHT BANNER */
.right-banner {
  position: fixed;
  top: 0;
  right: 0;
  width: 150px;
  height: 100vh;
 background-image: url("vhssleeves.png"); /* or images/vhssleeves.png */
 background-repeat: repeat-y;
}

/* CONTENT AREA */
.content {
  margin-left: 150px;
  margin-right: 150px;
  padding: 30px;

  max-width: 800px;
  margin-inline: auto;

  text-align: left;
}

/* CENTERED TITLE */
.content h1 {
  text-align: center;
}

/* PARAGRAPH STYLING */
.content p {
  margin-top: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .left-banner,
  .right-banner {
    width: 50px; /* smaller banners */
  }

  .content {
   margin-left: 60px;   /* margin matches shrunken banners */
   margin-right: 60px;
   padding: 10px;
  }
.site-title {
  text-align: center;      /* center the title */
  margin: 20px 0;
}

.site-title img {
  display: inline-block;
  width: 70%;              /* scales with screen size */
  max-width: 300px;        /* won’t get too big on desktop */
  height: auto;            /* keeps proportions */
}

