/* 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-color: green;
  background: url('bigfire.webp') no-repeat fixed, url("bg.jpg") no-repeat fixed;
  background-size: cover;
}

h1 {
  color: blue;
    text-shadow: 1px 1px green;
  text-align: right;
}

h2 {
  color: red;
    text-shadow: 1px 1px blue;
  text-align: right;
}

h3 {
  color: yellow;
  text-align: right;
}

p {
  color: green;
  text-shadow: 1px 1px red;
  text-align: right;
}

.mainText {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 300px;
  border: 3px solid yellow;
  padding: 10px;
}

.imageBoard {
  width: 1050px;
}

img {
  width: 200px;
  height: 200px;
}

































