@import "blogbody.css";
@import "header.css";
@import "footer.css";

*{
  box-sizing: border-box;
}

@media screen and (max-width: 700px) {
  .imagesetting{
    background-image: url(../images/mountain-reflected-640x480.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 480px;
  }
  .imagesetting2{
    background-image: url(../images/snowy-mountain-639x425.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 425px;
  }
  .leftcolumn, .rightcolumn{
    width: 100%;
    padding: 0;
  }
  img{
    width:100%;
  }
  .header{
    font-size: 1rem;
  }
}

@media screen and (min-width: 701px) and (max-width: 1300px) {
  .imagesetting{
    background-image: url(../images/mountain-reflected-1280x960.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 960px;
  }
  .imagesetting2{
    background-image: url(../images/snowy-mountain-1279x852.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 852px;
  }
  img{
    width:90%;
  }
  .header{
    font-size: 2rem;
  }
}

@media screen and (min-width:1301px) {
  .imagesetting{
    background-image: url(../images/mountain-reflected-1344x1008.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 1008px;
  }
  .imagesetting2{
    background-image: url(../images/snowy-mountain-1599x1065.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 1065px;
  }
  img{
    width:60%;
  }
  .header{
    font-size: 3rem;
  }
}
