/* 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 {
  color: #744f2e;
  font-family: Arial Rounded MT Bold;
  background-image: url("Webamp Content/cloudstithered.png");
  background-color: #ffffff;
  background-size: cover;
}

.responsive {
  width: 100%;
  height: auto;
}

/* unvisited link */
a:link {
  color: #744f2e;
}

/* visited link */
a:visited {
  color: #744f2e;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: #744f2e;
}

.btn-primary {
  color: #fff;
  background-color: #744f2e;
  border-color: #744f2e;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}