@charset "utf-8";
/* CSS Document */
/* Default to 30% viewport width */
.custom-img {
  width: 30vw;
  float: right;
  margin-left: 20px;
}
@media (min-width: 1400px) {
  .custom-img {
    width: 30vw;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .custom-img {
    width: 40vw;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-img {
    width: 50vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .custom-img {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  .custom-img {
    width: 30vw;
  }
}
address span strong {
  color: saddlebrown;
}

html, body {
  height: 100%;
}

body {
  background-color: #FBF4E4; /* pick any color */
}